Files
the_order/services/dataroom/tsconfig.json

18 lines
431 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"composite": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
"references": [
{ "path": "../../packages/shared" },
{ "path": "../../packages/schemas" },
{ "path": "../../packages/storage" },
{ "path": "../../packages/database" }
]
}