Spaces:
Sleeping
Sleeping
//@ts-check | |
import eslint from '@eslint/js'; | |
import tseslint from 'typescript-eslint'; | |
export default tseslint.config( | |
eslint.configs.recommended, | |
tseslint.configs.recommended, | |
tseslint.configs.recommendedTypeChecked, | |
{ | |
languageOptions: { | |
parserOptions: { | |
projectService: true, | |
tsconfigRootDir: import.meta.dirname, | |
}, | |
} | |
}, | |
{ | |
ignores: [ | |
'cache', | |
'node_modules', | |
'dist', | |
'eslint.config.mjs', | |
// '**/*.test.ts', | |
], | |
} | |
); | |