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 149e21c commit d9e8ce1Copy full SHA for d9e8ce1
eslint.config.js
@@ -3,21 +3,23 @@ import optional from './packages/eslint-config-node/optional.mjs'
3
import style from './packages/eslint-config-node/style.mjs'
4
5
/** @type {Array<import("eslint").Linter.Config>} */
6
-const configs = [{
+const config = [{
7
linterOptions: {
8
reportUnusedDisableDirectives: true,
9
},
10
ignores: [
11
'node_modules',
12
'!.*.js',
13
],
14
+ settings: {
15
+ 'import/resolver': { typescript: {} },
16
+ },
17
18
node,
19
optional,
20
style,
-{ rules: {
- // TODO: Figure out why ESLint cannot resolve the @typescript-eslint packages
- 'import/no-unresolved': 'off',
21
-} }]
+{
22
+ rules: {},
23
+}]
24
-export default configs
25
+export default config
0 commit comments