27 lines
570 B
JSON
27 lines
570 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"*": ["./@types/*"]
|
|
},
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./@types"
|
|
],
|
|
"outDir": "./bin"
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|