-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathnest-cli.json
138 lines (138 loc) · 3.52 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
{
"collection": "@nestjs/schematics",
"sourceRoot": "apps/api/src",
"monorepo": true,
"root": "apps/api",
"compilerOptions": {
"webpack": true,
"tsConfigPath": "apps/api/tsconfig.app.json"
},
"projects": {
"api": {
"type": "application",
"root": "apps/api",
"entryFile": "main",
"sourceRoot": "apps/api/src",
"compilerOptions": {
"tsConfigPath": "apps/api/tsconfig.app.json",
"plugins": [
{
"name": "@nestjs/swagger/plugin",
"options": {
"classValidatorShim": true,
"introspectComments": true
}
}
]
}
},
"producer": {
"type": "application",
"root": "apps/queue",
"entryFile": "main",
"sourceRoot": "apps/queue/src",
"compilerOptions": {
"tsConfigPath": "apps/queue/tsconfig.app.json"
}
},
"message-queue": {
"type": "library",
"root": "libs/message-queue",
"entryFile": "index",
"sourceRoot": "libs/message-queue/src",
"compilerOptions": {
"tsConfigPath": "libs/message-queue/tsconfig.lib.json"
}
},
"database": {
"type": "library",
"root": "libs/database",
"entryFile": "index",
"sourceRoot": "libs/database/src",
"compilerOptions": {
"tsConfigPath": "libs/database/tsconfig.lib.json"
}
},
"logger": {
"type": "library",
"root": "libs/logger",
"entryFile": "index",
"sourceRoot": "libs/logger/src",
"compilerOptions": {
"tsConfigPath": "libs/logger/tsconfig.lib.json"
}
},
"browser": {
"type": "library",
"root": "libs/browser",
"entryFile": "index",
"sourceRoot": "libs/browser/src",
"compilerOptions": {
"tsConfigPath": "libs/browser/tsconfig.lib.json"
}
},
"core-scanner": {
"type": "library",
"root": "libs/core-scanner",
"entryFile": "index",
"sourceRoot": "libs/core-scanner/src",
"compilerOptions": {
"tsConfigPath": "libs/core-scanner/tsconfig.lib.json"
}
},
"scan-engine": {
"type": "application",
"root": "apps/scan-engine",
"entryFile": "main",
"sourceRoot": "apps/scan-engine/src",
"compilerOptions": {
"tsConfigPath": "apps/scan-engine/tsconfig.app.json"
}
},
"ingest": {
"type": "library",
"root": "libs/ingest",
"entryFile": "index",
"sourceRoot": "libs/ingest/src",
"compilerOptions": {
"tsConfigPath": "libs/ingest/tsconfig.lib.json"
}
},
"cli": {
"type": "application",
"root": "apps/cli",
"entryFile": "main",
"sourceRoot": "apps/cli/src",
"compilerOptions": {
"tsConfigPath": "apps/cli/tsconfig.app.json"
}
},
"storage": {
"type": "library",
"root": "libs/storage",
"entryFile": "index",
"sourceRoot": "libs/storage/src",
"compilerOptions": {
"tsConfigPath": "libs/storage/tsconfig.lib.json"
}
},
"snapshot": {
"type": "library",
"root": "libs/snapshot",
"entryFile": "index",
"sourceRoot": "libs/snapshot/src",
"compilerOptions": {
"tsConfigPath": "libs/snapshot/tsconfig.lib.json"
}
},
"datetime": {
"type": "library",
"root": "libs/datetime",
"entryFile": "index",
"sourceRoot": "libs/datetime/src",
"compilerOptions": {
"tsConfigPath": "libs/datetime/tsconfig.lib.json"
}
}
}
}