We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d01013 commit f22f19fCopy full SHA for f22f19f
packages/eslint-config-typescript/eslint.config.js
@@ -9,7 +9,16 @@ export default [
9
files: ['**/*.js'],
10
rules: {
11
'import/extensions': 'off',
12
- 'import/no-unresolved': 'off',
+ // eslint-plugin-import doesn't know how to resolve entry points in packages
13
+ // that use modern export maps in package.json.
14
+ // https://github.com/typescript-eslint/typescript-eslint/issues/7565
15
+ // https://github.com/import-js/eslint-plugin-import/issues/2703
16
+ 'import/no-unresolved': [
17
+ 'error',
18
+ {
19
+ ignore: ['typescript-eslint']
20
+ }
21
+ ],
22
},
23
24
];
0 commit comments