15 lines
309 B
JSON
15 lines
309 B
JSON
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": { "project": ["./tsconfig.json"] },
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"constructor-super": "off"
|
|
}
|
|
}
|
|
|