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
If you do
import abc from "@/abc.ts"
with the tsconfig option paths, it doesn't find the file
It would be nice if tsconfig's paths option was supported in the new type stripping mode https://www.typescriptlang.org/tsconfig/#paths
Please close this if it's not something possible with how the typescript-nodejs setup works
The text was updated successfully, but these errors were encountered:
[package.json]
{ "type": "module", "imports": { "#controllers/*": "./src/controllers/*", "#routes/*": "./src/routes/*" } }
[index.ts]
import controller1 from '#controllers/controller1.ts' import route1 from '#routes/route1.ts'
This code works which replicates the functionality of tsconfig paths option
Sorry, something went wrong.
No branches or pull requests
What is the problem this feature will solve?
If you do
with the tsconfig option paths, it doesn't find the file
What is the feature you are proposing to solve the problem?
It would be nice if tsconfig's paths option was supported in the new type stripping mode
https://www.typescriptlang.org/tsconfig/#paths
What alternatives have you considered?
Please close this if it's not something possible with how the typescript-nodejs setup works
The text was updated successfully, but these errors were encountered: