Files
lifeforge/shared/tsconfig.json
2026-06-25 08:54:12 +08:00

23 lines
526 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
// Environment setup
"lib": ["ESNext", "DOM"],
"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"]
}