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
Subpath imports using the "imports" field in package.json results in an error like:
"imports"
package.json
Error [ERR_MODULE_NOT_FOUND]: Cannot find module '/Users/timon.vanspronsen/Code/tsimp-imports/src/utils/math.js'
I've created a reproduction repository here: https://github.com/TimonVS/tsimp-imports. I've tried with both Node.js 18 and 20.
The text was updated successfully, but these errors were encountered:
fix: tapjs#11, basic subpath import support (format)
3d2a2b4
#23 might fix this.
Edit: Maybe not. I wrote my fix for subpath imports in the following style, which the reproduction repository didn't follow.
"imports": { "#utilities/*": "./utilities/*" }
Sorry, something went wrong.
fix: tapjs#11, basic subpath import support
5fab420
No branches or pull requests
Subpath imports using the
"imports"
field inpackage.json
results in an error like:I've created a reproduction repository here: https://github.com/TimonVS/tsimp-imports. I've tried with both Node.js 18 and 20.
The text was updated successfully, but these errors were encountered: