Files
lifeforge/shared/tsconfig.json

30 lines
563 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"
]
}