32 lines
654 B
JavaScript
32 lines
654 B
JavaScript
|
module.exports = {
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es2021": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:react/recommended",
|
||
|
"plugin:react/jsx-runtime",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:@typescript-eslint/recommended-requiring-type-checking"
|
||
|
],
|
||
|
"overrides": [],
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": "latest",
|
||
|
"sourceType": "module",
|
||
|
"project": "./tsconfig.json",
|
||
|
"tsconfigRootDir": __dirname,
|
||
|
},
|
||
|
"plugins": [
|
||
|
"react",
|
||
|
"@typescript-eslint"
|
||
|
],
|
||
|
"rules": {},
|
||
|
"settings": {
|
||
|
"react": {
|
||
|
"version": "detect",
|
||
|
},
|
||
|
},
|
||
|
}
|