Files
helpers/test/tsconfig.json
T

30 lines
740 B
JSON

{
"compilerOptions": {
"composite": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"lib": ["esnext"],
"module": "NodeNext",
"noEmit": true,
"noEmitHelpers": true,
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "../libtest",
"sourceMap": true,
"strict": true,
"target": "ESNext",
"useUnknownInCatchVariables": true,
},
"references": [
{ "path": "../src" },
]
}