2025-12-12 15:02:56 -08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"lib": ["ES2022"],
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
2026-01-02 20:27:42 -08:00
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
2025-12-12 15:02:56 -08:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"],
|
|
|
|
|
"@/core/*": ["src/core/*"],
|
|
|
|
|
"@/integration/*": ["src/integration/*"],
|
|
|
|
|
"@/sovereign/*": ["src/sovereign/*"],
|
|
|
|
|
"@/infrastructure/*": ["src/infrastructure/*"],
|
|
|
|
|
"@/shared/*": ["src/shared/*"]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
2026-01-02 20:27:42 -08:00
|
|
|
"exclude": ["node_modules", "dist", "tests", "src/ui/**/*", "src/__tests__/**/*"]
|
2025-12-12 15:02:56 -08:00
|
|
|
}
|
|
|
|
|
|