32 lines
950 B
JSON
32 lines
950 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowUnreachableCode": true,
|
|
"allowUnusedLabels": true,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "commonjs",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "./dist",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictBindCallApply": true,
|
|
"strictBuiltinIteratorReturn": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"target": "es6",
|
|
"useUnknownInCatchVariables": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
|
}
|