Files
sdi/apps/worker/tsconfig.json
austindebest d62468adf9 Initial commit: SDI SaaS Platform foundation
- Complete monorepo structure with pnpm workspaces
- Prisma database schema with 20+ entities
- NestJS API with 9 core modules
- BullMQ orchestration worker
- AWS and Azure provider adapters
- Docker Compose infrastructure
- Complete documentation
2026-04-20 00:00:59 +01:00

14 lines
321 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"paths": {
"@sdi/database": ["../../packages/database/src"],
"@sdi/shared-types": ["../../packages/shared-types/src"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}