Files
the_order/services/eresidency/tsconfig.json

21 lines
558 B
JSON
Raw Normal View History

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