34 lines
845 B
JSON
34 lines
845 B
JSON
{
|
|
// Visit https://aka.ms/tsconfig to read more about this file
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
|
|
"module": "Node16",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
// "noUnusedLocals": true,
|
|
// "noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
// "isolatedModules": true,
|
|
// "skipLibCheck": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"],
|
|
}
|