-
Notifications
You must be signed in to change notification settings - Fork 12
/
nest-cli.json
151 lines (151 loc) · 3.98 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/core/src",
"monorepo": true,
"root": "apps/core",
"compilerOptions": {
"webpack": false,
"tsConfigPath": "tsconfig.build.json",
"plugins": [
{
"name": "@nestjs/swagger",
"options": {
"classValidatorShim": false,
"introspectComments": true,
"dtoFileNameSuffix": [
".dto.ts",
".model.ts"
]
}
}
]
},
"projects": {
"core": {
"type": "application",
"root": "apps/core",
"entryFile": "main",
"sourceRoot": "apps/core/src",
"compilerOptions": {
"tsConfigPath": "apps/core/tsconfig.app.json"
}
},
"database": {
"type": "library",
"root": "libs/database",
"entryFile": "index",
"sourceRoot": "libs/database/src",
"compilerOptions": {
"tsConfigPath": "libs/database/tsconfig.lib.json"
}
},
"user-service": {
"type": "application",
"root": "apps/user-service",
"entryFile": "main",
"sourceRoot": "apps/user-service/src",
"compilerOptions": {
"tsConfigPath": "apps/user-service/tsconfig.app.json"
}
},
"cache": {
"type": "library",
"root": "libs/cache",
"entryFile": "index",
"sourceRoot": "libs/cache/src",
"compilerOptions": {
"tsConfigPath": "libs/cache/tsconfig.lib.json"
}
},
"helper": {
"type": "library",
"root": "libs/helper",
"entryFile": "index",
"sourceRoot": "libs/helper/src",
"compilerOptions": {
"tsConfigPath": "libs/helper/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"
}
},
"page-service": {
"type": "application",
"root": "apps/page-service",
"entryFile": "main",
"sourceRoot": "apps/page-service/src",
"compilerOptions": {
"tsConfigPath": "apps/page-service/tsconfig.app.json"
}
},
"comments-service": {
"type": "application",
"root": "apps/comments-service",
"entryFile": "main",
"sourceRoot": "apps/comments-service/src",
"compilerOptions": {
"tsConfigPath": "apps/comments-service/tsconfig.app.json"
}
},
"friends-service": {
"type": "application",
"root": "apps/friends-service",
"entryFile": "main",
"sourceRoot": "apps/friends-service/src",
"compilerOptions": {
"tsConfigPath": "apps/friends-service/tsconfig.app.json"
}
},
"notification-service": {
"type": "application",
"root": "apps/notification-service",
"entryFile": "main",
"sourceRoot": "apps/notification-service/src",
"compilerOptions": {
"tsConfigPath": "apps/notification-service/tsconfig.app.json"
}
},
"themes-service": {
"type": "application",
"root": "apps/themes-service",
"entryFile": "main",
"sourceRoot": "apps/themes-service/src",
"compilerOptions": {
"tsConfigPath": "apps/themes-service/tsconfig.app.json"
}
},
"store-service": {
"type": "application",
"root": "apps/store-service",
"entryFile": "main",
"sourceRoot": "apps/store-service/src",
"compilerOptions": {
"tsConfigPath": "apps/store-service/tsconfig.app.json"
}
},
"config-service": {
"type": "application",
"root": "apps/config-service",
"entryFile": "main",
"sourceRoot": "apps/config-service/src",
"compilerOptions": {
"tsConfigPath": "apps/config-service/tsconfig.app.json"
}
}
}
}