22 lines
415 B
JSON
22 lines
415 B
JSON
|
{
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"ecmaFeatures": {
|
||
|
"jsx": true
|
||
|
},
|
||
|
"ecmaVersion": 13,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es2021": true
|
||
|
},
|
||
|
"plugins": ["react", "@typescript-eslint"],
|
||
|
"extends": [
|
||
|
"plugin:react/recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:prettier/recommended"
|
||
|
],
|
||
|
"rules": {}
|
||
|
}
|