-
-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
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
[import/no-unresolved] when importing from another package in a monorepo #210
Comments
Anyone? |
Hi. This fixed a similar issue for me. I didn't need to add a I fixed my issue by adding this to my parserOptions: {
project: ['tsconfig.json', 'packages/*/tsconfig.json'],
node: true,
},
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts'],
},
'import/resolver': {
typescript: {
// See https://github.com/import-js/eslint-import-resolver-typescript for documentation of these settings
// This `project` entry is needed, in addition to the `project` entry above under `parserOptions`,
// otherwise eslint-plugin-import's `import/no-unused-modules` rule will not work correctly
project: ['tsconfig.json', 'packages/*/tsconfig.json'],
},
},
}, |
@tpluscode Sorry I'm very late here, can you please provide an online runnable reproduction? |
tpluscode
added a commit
to tminuscode/resolver-typescript-package-exports
that referenced
this issue
Dec 6, 2023
Have you had a chance to to look into it @JounQin \ |
See #275 and webpack/enhanced-resolve#413 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Specifically, I have a package with an export map like this
In other packages I
import '@hydrofoil/roadshow-ng/rs-view.js'
etc. This gets reported as unresolved.Interestingly, if I drop the extension or change to
.ts
, the import plugin no longer complains...The text was updated successfully, but these errors were encountered: