32 lines
680 B
JSON
32 lines
680 B
JSON
|
{
|
||
|
"root": true,
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es6": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"airbnb-base"
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 2020,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": ["**/*.ts"],
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"parserOptions": {
|
||
|
"project": "./tsconfig.json"
|
||
|
},
|
||
|
"plugins": [
|
||
|
"@typescript-eslint"
|
||
|
],
|
||
|
"extends": [
|
||
|
"airbnb-typescript/base",
|
||
|
"plugin:@typescript-eslint/recommended"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|