18 lines
325 B
JSON
18 lines
325 B
JSON
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-inferrable-types": 0
|
|
},
|
|
"ignorePatterns": [
|
|
"jest.config.js",
|
|
"dist/**/*"
|
|
]
|
|
} |