19 lines
347 B
JSON
19 lines
347 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"noUnusedLocals": false,
|
||
|
|
"noUnusedParameters": false,
|
||
|
|
"noImplicitReturns": false,
|
||
|
|
"noUncheckedIndexedAccess": false,
|
||
|
|
"noPropertyAccessFromIndexSignature": false
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"tests/**/*",
|
||
|
|
"src/**/*"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"bin"
|
||
|
|
]
|
||
|
|
}
|