The resolved import specifier of the module being loaded
Symbol
OnLoadArgs.path
path: string
builder.onLoad({ filter: /^hello:world$/ }, (args) => {
console.log(args.path); // "hello:world"
return { exports: { foo: "bar" }, loader: "object" };
});