-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest-cli.json
99 lines (99 loc) · 3.32 KB
/
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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "apps/notification-api/src",
"compilerOptions": {
"builder": "swc",
"deleteOutDir": true,
"webpack": true,
"tsConfigPath": "apps/notification-api/tsconfig.app.json",
"typeCheck": true
},
"projects": {
"notification-api": {
"type": "application",
"root": "apps/notification-api",
"entryFile": "main",
"sourceRoot": "apps/notification-api/src",
"compilerOptions": {
"tsConfigPath": "apps/notification-api/tsconfig.app.json"
}
},
"worker-service": {
"type": "application",
"root": "apps/worker-service",
"entryFile": "main",
"sourceRoot": "apps/worker-service/src",
"compilerOptions": {
"tsConfigPath": "apps/worker-service/tsconfig.app.json",
"assets": ["template/*.hbs"],
"watchAssets": true
}
},
"cns-notification-record": {
"type": "application",
"root": "apps/cns-notification-record",
"entryFile": "main",
"sourceRoot": "apps/cns-notification-record/src",
"compilerOptions": {
"tsConfigPath": "apps/cns-notification-record/tsconfig.app.json"
}
},
"dlx-notification-api": {
"type": "application",
"root": "apps/dlx-notification-api",
"entryFile": "main",
"sourceRoot": "apps/dlx-notification-api/src",
"compilerOptions": {
"tsConfigPath": "apps/dlx-notification-api/tsconfig.app.json"
}
},
"common": {
"type": "library",
"root": "libs/common",
"entryFile": "index",
"sourceRoot": "libs/common/src",
"compilerOptions": {
"tsConfigPath": "libs/common/tsconfig.lib.json"
}
},
"auth": {
"type": "library",
"root": "libs/auth",
"entryFile": "index",
"sourceRoot": "libs/auth/src",
"compilerOptions": {
"tsConfigPath": "libs/auth/tsconfig.lib.json"
}
},
"config": {
"type": "library",
"root": "libs/config",
"entryFile": "index",
"sourceRoot": "libs/config/src",
"compilerOptions": {
"tsConfigPath": "libs/config/tsconfig.lib.json"
}
},
"cns-user": {
"type": "application",
"root": "apps/cns-user",
"entryFile": "main",
"sourceRoot": "apps/cns-user/src",
"compilerOptions": {
"tsConfigPath": "apps/cns-user/tsconfig.app.json"
}
},
"cns-microservices-monitoring": {
"type": "application",
"root": "apps/cns-microservices-monitoring",
"entryFile": "main",
"sourceRoot": "apps/cns-microservices-monitoring/src",
"compilerOptions": {
"tsConfigPath": "apps/cns-microservices-monitoring/tsconfig.app.json"
}
}
},
"monorepo": true,
"root": "apps/notification-api"
}