Files
lifeforge/shared/tsconfig.json
Melvin Chia f501dcc51d 25w30
Former-commit-id: c4dbab441a07af74b0f0868713f5558d55a30051 [formerly 98b0d8af54f202b7a33da55f1c86e493d73951f0] [formerly 2e4cb072c414aa97c409a2d1236dd6a64db10db9 [formerly 3191189b59d60227b42c9810b79bb4aab29f692a]]
Former-commit-id: 5e22b77c8a7d2fea91793eb7a315dbf3866df6b3 [formerly e23dbf3d69a2af7f979a29eb738045c54629e748]
Former-commit-id: fca2ed9b0445493979e253925aa7f5838c763b21
2025-07-24 10:18:29 +08:00

29 lines
544 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
// Environment setup
"lib": [
"ESNext"
],
"target": "ESNext",
"module": "ESNext",
// Output configuration
"declaration": true,
"rootDir": "./src",
"outDir": "./dist",
"noEmit": false,
// Type checking
"strict": true,
"skipLibCheck": true,
// Additional checks
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true
},
"include": [
"src",
],
"exclude": [
"dist",
"node_modules"
]
}