You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using short hand imports like import foo from "~/foo"; mapped by tsconfig's paths option, it appears that they are treated as external dependencies when the --packages=external option is specified.
When using short hand imports like
import foo from "~/foo";
mapped bytsconfig
'spaths
option, it appears that they are treated as external dependencies when the--packages=external
option is specified.Current output:
~/foo
is not resolved as an external dependency. demoExpected output:
~/foo
is resolved. demo (just replaced--packages=external
with--external:ext
)https://esbuild.github.io/api/#packages
The text was updated successfully, but these errors were encountered: