2025-11-07 22:34:54 -08:00
|
|
|
{
|
|
|
|
|
"extends": "../../tsconfig.base.json",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"outDir": "./dist",
|
2025-11-10 19:43:02 -08:00
|
|
|
"rootDir": "./src",
|
|
|
|
|
"composite": true
|
2025-11-07 22:34:54 -08:00
|
|
|
},
|
2025-11-13 10:04:32 -08:00
|
|
|
"include": ["src/**/*", "tests/**/*"],
|
2025-11-10 19:43:02 -08:00
|
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
|
|
|
|
|
"references": [
|
|
|
|
|
{ "path": "../../packages/shared" },
|
|
|
|
|
{ "path": "../../packages/schemas" },
|
|
|
|
|
{ "path": "../../packages/workflows" },
|
|
|
|
|
{ "path": "../../packages/storage" },
|
|
|
|
|
{ "path": "../../packages/database" },
|
|
|
|
|
{ "path": "../../packages/ocr" }
|
|
|
|
|
]
|
2025-11-07 22:34:54 -08:00
|
|
|
}
|
|
|
|
|
|