40 lines
920 B
JSON
40 lines
920 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"checkJs": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noImplicitReturns": false,
|
||
|
"noImplicitAny": true,
|
||
|
"noImplicitThis": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"strictFunctionTypes": false,
|
||
|
"strictNullChecks": true,
|
||
|
"strictPropertyInitialization": true,
|
||
|
"strictBindCallApply": true,
|
||
|
"strict": true,
|
||
|
"alwaysStrict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"target": "ES2020",
|
||
|
"moduleResolution": "node",
|
||
|
"declaration": true,
|
||
|
"declarationMap": true,
|
||
|
"outDir": "types",
|
||
|
"skipLibCheck": true,
|
||
|
"stripInternal": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"emitDeclarationOnly": true,
|
||
|
"baseUrl": ".",
|
||
|
"composite": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"vendor",
|
||
|
"node_modules"
|
||
|
],
|
||
|
"compileOnSave": false
|
||
|
}
|