mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-28 14:55:45 +00:00
30 lines
563 B
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"
|
|
]
|
|
} |