34 lines
740 B
JSON
34 lines
740 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
|
|
"module": "nodenext",
|
|
"target": "esnext",
|
|
// "lib": ["esnext"],
|
|
// "types": ["node"],
|
|
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
"moduleDetection": "force",
|
|
"verbatimModuleSyntax": true,
|
|
|
|
// "isolatedModules": true,
|
|
// "skipLibCheck": true
|
|
}
|
|
}
|