19 lines
351 B
JavaScript
19 lines
351 B
JavaScript
|
import eslint from '@eslint/js';
|
||
|
import tseslint from 'typescript-eslint';
|
||
|
|
||
|
export default tseslint.config(
|
||
|
eslint.configs.recommended,
|
||
|
...tseslint.configs.recommendedTypeChecked,
|
||
|
{
|
||
|
languageOptions: {
|
||
|
parserOptions: {
|
||
|
project: true
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
files: ['*.js'],
|
||
|
...tseslint.configs.disableTypeChecked,
|
||
|
}
|
||
|
);
|