33 lines
818 B
JSON
33 lines
818 B
JSON
{
|
|
"include": ["packages/**/*.ts", "packages/**/*.json"],
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./packages",
|
|
|
|
"resolveJsonModule": true,
|
|
"module": "esnext",
|
|
"target": "es2023",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "bundler",
|
|
"composite": true, // For incremental build
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"verbatimModuleSyntax": true,
|
|
"isolatedModules": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"types": [],
|
|
|
|
// Other Outputs
|
|
"declaration": true, // .d.ts
|
|
"declarationMap": true, // source map
|
|
"sourceMap": true,
|
|
|
|
// Stricter Typechecking Options
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true
|
|
},
|
|
"buildOptions": {
|
|
"incremental": true
|
|
}
|
|
}
|