We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I switched my project to enable ES modules
type: module
node --loader ts-node/esm
ts-node
module: commonjs
esnext
it works fine, except when starting using paths aliases.
so, import test from './file'; works, but import test from '@app/file'; doesn't
import test from './file';
import test from '@app/file';
minimal reproduction
The text was updated successfully, but these errors were encountered:
Related: #1452 #1375 #1585
Closing as answered and tracked by other issues
Sorry, something went wrong.
related: dividab/tsconfig-paths#122
No branches or pull requests
I switched my project to enable ES modules
type: module
in package.jsonnode --loader ts-node/esm
instead ofts-node
module: commonjs
toesnext
it works fine, except when starting using paths aliases.
so,
import test from './file';
works, butimport test from '@app/file';
doesn'tminimal reproduction
The text was updated successfully, but these errors were encountered: