feat: add nestjs api and worker skeletons

This commit is contained in:
Bastian Wagner
2026-08-17 13:18:24 +02:00
parent c23bda56a3
commit a08eecd4e3
17 changed files with 124 additions and 32 deletions

View File

@@ -1,8 +1,30 @@
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"monorepo": true,
"root": "apps/api",
"sourceRoot": "apps/api/src",
"compilerOptions": {
"deleteOutDir": true
},
"projects": {
"api": {
"type": "application",
"root": "apps/api",
"entryFile": "main",
"sourceRoot": "apps/api/src",
"compilerOptions": {
"tsConfigPath": "apps/api/tsconfig.app.json"
}
},
"worker": {
"type": "application",
"root": "apps/worker",
"entryFile": "main",
"sourceRoot": "apps/worker/src",
"compilerOptions": {
"tsConfigPath": "apps/worker/tsconfig.app.json"
}
}
}
}