Files
backend/nest-cli.json
2024-02-12 23:50:44 +03:00

32 lines
796 B
JSON

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