-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
32 lines (32 loc) · 873 Bytes
/
nest-cli.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/client-backend/src",
"monorepo": true,
"root": "apps/client-backend",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/client-backend/tsconfig.app.json"
},
"projects": {
"client-backend": {
"type": "application",
"root": "apps/client-backend",
"entryFile": "main",
"sourceRoot": "apps/client-backend/src",
"compilerOptions": {
"tsConfigPath": "apps/client-backend/tsconfig.app.json",
"assets": ["**/*.proto"],
"watchAssets": true
}
},
"db-transactions": {
"type": "application",
"root": "apps/db-transactions",
"entryFile": "main",
"sourceRoot": "apps/db-transactions/src",
"compilerOptions": {
"tsConfigPath": "apps/db-transactions/tsconfig.app.json"
}
}
}
}