diff options
Diffstat (limited to 'eslint.config.js')
-rw-r--r-- | eslint.config.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eslint.config.js b/eslint.config.js index 63e7097..1d3d290 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -6,12 +6,12 @@ import prettier from 'eslint-config-prettier'; export default [ js.configs.recommended, { - ignores: ['dist/**/*'], + ignores: ['dist/**/*', '*.d.ts', '*.js.map', '*.d.ts.map'], files: ['**/*.ts'], languageOptions: { parser: tseslintParser, parserOptions: { - project: ['./tsconfig.json', './examples/tsconfig.json'], + project: ['./tsconfig.json'], tsconfigRootDir: '.', }, }, @@ -22,6 +22,7 @@ export default [ ...tseslint.configs.recommended.rules, ...prettier.rules, '@typescript-eslint/no-explicit-any': 'warn', + 'no-undef': 'off', }, }, ];
\ No newline at end of file |