zenstack/tsconfig.json
2025-02-02 22:54:22 -08:00

39 lines
1.2 KiB
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"outDir": "dist",
"noEmit": true,
"sourceMap": true,
"allowJs": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
// "exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"noErrorTruncation": true,
"skipLibCheck": true,
"declaration": true
},
"exclude": ["**/dist"]
}