30 lines
754 B
JSON
30 lines
754 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,
|
|
"noUncheckedSideEffectImports": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"types": ["node"],
|
|
"useUnknownInCatchVariables": true,
|
|
},
|
|
"references": [
|
|
{ "path": "../src" },
|
|
]
|
|
}
|