Files
the_order/services/intake/tsconfig.json

20 lines
527 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"composite": true
},
"include": ["src/**/*", "tests/**/*"],
"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" }
]
}