Files
monie-backend/nest-cli.json

60 lines
1.5 KiB
JSON

{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/gateway/src",
"compilerOptions": {
"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"
}
}
}
}