34 lines
845 B
JSON
34 lines
845 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"module": "CommonJS",
|
|
"resolveJsonModule": true,
|
|
"outDir": "build",
|
|
"declaration": true,
|
|
"newLine": "lf",
|
|
"noEmitOnError": true,
|
|
"sourceMap": true,
|
|
"disableSizeLimit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": [ "ES2020" ],
|
|
"target": "ES2020",
|
|
"noErrorTruncation": true,
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"test/**/*.ts"
|
|
],
|
|
"exclude": [],
|
|
}
|
|
|