-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnest-cli.json
More file actions
46 lines (46 loc) · 1.18 KB
/
nest-cli.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"monorepo": true,
"compilerOptions": {
"webpack": true
},
"projects": {
"api-gateway": {
"type": "application",
"root": "apps/api-gateway",
"entryFile": "main",
"sourceRoot": "apps/api-gateway/src",
"compilerOptions": {
"tsConfigPath": "apps/api-gateway/tsconfig.app.json"
}
},
"routes-service": {
"type": "application",
"root": "apps/routes-service",
"entryFile": "main",
"sourceRoot": "apps/routes-service/src",
"compilerOptions": {
"tsConfigPath": "apps/routes-service/tsconfig.app.json"
}
},
"points-service": {
"type": "application",
"root": "apps/points-service",
"entryFile": "main",
"sourceRoot": "apps/points-service/src",
"compilerOptions": {
"tsConfigPath": "apps/points-service/tsconfig.app.json"
}
},
"auth": {
"type": "application",
"root": "apps/auth",
"entryFile": "main",
"sourceRoot": "apps/auth/src",
"compilerOptions": {
"tsConfigPath": "apps/auth/tsconfig.app.json"
}
}
}
}