We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8965db1 commit a88ac87Copy full SHA for a88ac87
1 file changed
eslint.config.ts
@@ -4,6 +4,7 @@ import css from '@eslint/css';
4
import eslint from '@eslint/js';
5
import html from '@html-eslint/eslint-plugin';
6
import stylistic from '@stylistic/eslint-plugin';
7
+import { createTypeScriptImportResolver } from 'eslint-import-resolver-typescript';
8
import { importX } from 'eslint-plugin-import-x';
9
import jsonc from 'eslint-plugin-jsonc';
10
import jsxA11y from 'eslint-plugin-jsx-a11y';
@@ -55,6 +56,9 @@ export default defineConfig(
55
56
{ allowNumber: true },
57
],
58
},
59
+ settings: {
60
+ 'import-x/resolver-next': [createTypeScriptImportResolver()],
61
+ },
62
63
{
64
extends: [
0 commit comments