chore: migrate backend to monorepo apps and biome
This commit is contained in:
@@ -1,8 +1,59 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/nest-cli",
|
||||
"collection": "@nestjs/schematics",
|
||||
"sourceRoot": "src",
|
||||
"sourceRoot": "apps/gateway/src",
|
||||
"compilerOptions": {
|
||||
"deleteOutDir": true
|
||||
"deleteOutDir": true,
|
||||
"webpack": true,
|
||||
"tsConfigPath": "apps/gateway/tsconfig.app.json"
|
||||
},
|
||||
"monorepo": true,
|
||||
"root": "apps/gateway",
|
||||
"projects": {
|
||||
"auth": {
|
||||
"type": "application",
|
||||
"root": "apps/auth",
|
||||
"entryFile": "main",
|
||||
"sourceRoot": "apps/auth/src",
|
||||
"compilerOptions": {
|
||||
"tsConfigPath": "apps/auth/tsconfig.app.json"
|
||||
}
|
||||
},
|
||||
"bookings": {
|
||||
"type": "application",
|
||||
"root": "apps/bookings",
|
||||
"entryFile": "main",
|
||||
"sourceRoot": "apps/bookings/src",
|
||||
"compilerOptions": {
|
||||
"tsConfigPath": "apps/bookings/tsconfig.app.json"
|
||||
}
|
||||
},
|
||||
"gateway": {
|
||||
"type": "application",
|
||||
"root": "apps/gateway",
|
||||
"entryFile": "main",
|
||||
"sourceRoot": "apps/gateway/src",
|
||||
"compilerOptions": {
|
||||
"tsConfigPath": "apps/gateway/tsconfig.app.json"
|
||||
}
|
||||
},
|
||||
"notifications": {
|
||||
"type": "application",
|
||||
"root": "apps/notifications",
|
||||
"entryFile": "main",
|
||||
"sourceRoot": "apps/notifications/src",
|
||||
"compilerOptions": {
|
||||
"tsConfigPath": "apps/notifications/tsconfig.app.json"
|
||||
}
|
||||
},
|
||||
"tasks": {
|
||||
"type": "application",
|
||||
"root": "apps/tasks",
|
||||
"entryFile": "main",
|
||||
"sourceRoot": "apps/tasks/src",
|
||||
"compilerOptions": {
|
||||
"tsConfigPath": "apps/tasks/tsconfig.app.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user