-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnest-cli.json
More file actions
77 lines (77 loc) · 2.19 KB
/
Copy pathnest-cli.json
File metadata and controls
77 lines (77 loc) · 2.19 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/api-gateway/src",
"compilerOptions": {
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/api-gateway/tsconfig.app.json"
},
"monorepo": true,
"root": "apps/api-gateway",
"projects": {
"api-gateway": {
"type": "application",
"root": "apps/api-gateway",
"entryFile": "main",
"sourceRoot": "apps/api-gateway/src",
"compilerOptions": {
"tsConfigPath": "apps/api-gateway/tsconfig.app.json"
}
},
"audit-service": {
"type": "application",
"root": "apps/audit-service",
"entryFile": "main",
"sourceRoot": "apps/audit-service/src",
"compilerOptions": {
"tsConfigPath": "apps/audit-service/tsconfig.app.json"
}
},
"contracts": {
"type": "library",
"root": "libs/contracts",
"entryFile": "index",
"sourceRoot": "libs/contracts/src",
"compilerOptions": {
"tsConfigPath": "libs/contracts/tsconfig.lib.json"
}
},
"notifications-service": {
"type": "application",
"root": "apps/notifications-service",
"entryFile": "main",
"sourceRoot": "apps/notifications-service/src",
"compilerOptions": {
"tsConfigPath": "apps/notifications-service/tsconfig.app.json"
}
},
"observability": {
"type": "library",
"root": "libs/observability",
"entryFile": "index",
"sourceRoot": "libs/observability/src",
"compilerOptions": {
"tsConfigPath": "libs/observability/tsconfig.lib.json"
}
},
"properties-service": {
"type": "application",
"root": "apps/properties-service",
"entryFile": "main",
"sourceRoot": "apps/properties-service/src",
"compilerOptions": {
"tsConfigPath": "apps/properties-service/tsconfig.app.json"
}
},
"work-orders-service": {
"type": "application",
"root": "apps/work-orders-service",
"entryFile": "main",
"sourceRoot": "apps/work-orders-service/src",
"compilerOptions": {
"tsConfigPath": "apps/work-orders-service/tsconfig.app.json"
}
}
}
}