42 lines
991 B
JSON
42 lines
991 B
JSON
{
|
|
"compilerOptions": {
|
|
"verbatimModuleSyntax": true,
|
|
"noEmitOnError": true,
|
|
"target": "es2021",
|
|
"skipLibCheck": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"isolatedModules": true,
|
|
|
|
"strict": true,
|
|
"strictBindCallApply": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"allowUnreachableCode": false,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noImplicitOverride": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"useDefineForClassFields": false,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
|
|
"noErrorTruncation": false,
|
|
|
|
"outDir": ".tmp/tsc",
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"rootDir": "./",
|
|
"incremental": true,
|
|
"types": ["mocha"],
|
|
"lib": ["es2021", "dom", "DOM.Iterable"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts"]
|
|
}
|