EGOIST
EGOIST
The solution is to use `@rollup/plugin-alias` as @ycnmhd said, there's also [alias-hq](https://github.com/davestewart/alias-hq/blob/master/docs/integrations.md#rollup) (by @davestewart) to reduce boilerplate code.
@peats-bond path alias is not part of esbuild's `transform` api
This is the reason it's not supported https://github.com/evanw/esbuild/issues/128#issuecomment-999946969
just use two rollup configs?
it should just work, I didn't try though
the url needs to include a file path, e.g. `http://example.com/index.html`, and you need to configure your bundle to handle files that are not JavaScript modules.
plugins and `inject` are not supported since they are not a part of the `transform` API: https://esbuild.github.io/api/#transform-api
Hmm this plugin uses esbuild's `transform` API which means it doesn't support esbuild plugins
I don't know if it's possible to add custom resolver to Parcel 😢 /cc @devongovett Or.. what if making Parcel somehow support this natively?
It's cached by URL. If you import something like `http://unpkg.com/vue`, the cache on disk will be `~/.cache/import-http/deps/https/unpkg.com/[email protected]`, like how `Deno` works The cache resolution process can be improved though. My...