mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-29 15:25:50 +00:00
23 lines
519 B
JSON
23 lines
519 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"]
|
|
}
|