Files
dbis_core/tsconfig.json

40 lines
1.0 KiB
JSON
Raw Permalink Normal View History

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/**/*"],
"exclude": ["node_modules", "dist", "tests", "src/ui/**/*", "src/__tests__/**/*"],
"ts-node": {
"require": ["tsconfig-paths/register"]
}
2025-12-12 15:02:56 -08:00
}