62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"include": [
|
|
"./src",
|
|
"./configs",
|
|
"./jest.config.ts",
|
|
"./webpack.config.ts",
|
|
"./__spec__",
|
|
],
|
|
"compilerOptions": {
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"alwaysStrict": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"useUnknownInCatchVariables": true,
|
|
|
|
"allowArbitraryExtensions": true,
|
|
"allowUmdGlobalAccess": true,
|
|
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"paths": {
|
|
"__spec__/*": ["./__spec__/*"],
|
|
"*": ["./src/*"]
|
|
},
|
|
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"noEmitOnError": true,
|
|
"preserveConstEnums": true,
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"skipLibCheck": true
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
}
|
|
}
|