-
Notifications
You must be signed in to change notification settings - Fork 3
/
workspace.json
197 lines (197 loc) · 5.91 KB
/
workspace.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
{
"version": 1,
"projects": {
"playground": {
"root": "packages/playground",
"sourceRoot": "packages/playground/src",
"projectType": "application",
"prefix": "playground",
"schematics": {},
"architect": {
"build": {
"builder": "@nrwl/node:build",
"options": {
"outputPath": "dist/packages/playground",
"main": "packages/playground/src/main.ts",
"tsConfig": "packages/playground/tsconfig.app.json",
"assets": ["packages/playground/src/assets"]
},
"configurations": {
"production": {
"optimization": true,
"extractLicenses": true,
"inspect": false,
"fileReplacements": [
{
"replace": "packages/playground/src/environments/environment.ts",
"with": "packages/playground/src/environments/environment.prod.ts"
}
]
}
},
"outputs": ["{options.outputPath}"]
},
"serve": {
"builder": "@nrwl/node:execute",
"options": {
"buildTarget": "playground:build"
}
},
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"packages/playground/**/*.ts",
"packages/playground/**/*.spec.ts",
"packages/playground/**/*.d.ts"
]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "packages/playground/jest.config.js",
"passWithNoTests": true
},
"outputs": ["coverage/packages/playground"]
}
}
},
"in-memory-db": {
"root": "packages/in-memory-db",
"sourceRoot": "packages/in-memory-db/src",
"projectType": "library",
"schematics": {},
"architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"packages/in-memory-db/**/*.ts",
"packages/in-memory-db/**/*.spec.ts",
"packages/in-memory-db/**/*.spec.tsx",
"packages/in-memory-db/**/*.spec.js",
"packages/in-memory-db/**/*.spec.jsx",
"packages/in-memory-db/**/*.d.ts"
]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "packages/in-memory-db/jest.config.js",
"passWithNoTests": true
},
"outputs": ["coverage/packages/in-memory-db"]
},
"build": {
"builder": "@nrwl/node:package",
"options": {
"outputPath": "dist/packages/in-memory-db",
"tsConfig": "packages/in-memory-db/tsconfig.lib.json",
"packageJson": "packages/in-memory-db/package.json",
"main": "packages/in-memory-db/src/index.ts",
"assets": [
"packages/in-memory-db/*.md",
{
"glob": "**/*.json",
"input": "packages/in-memory-db/src/schematics",
"output": "src/schematics"
}
]
},
"outputs": ["{options.outputPath}"]
}
}
},
"playground-e2e": {
"root": "packages/playground-e2e",
"sourceRoot": "packages/playground-e2e/src",
"projectType": "application",
"prefix": "playground-e2e",
"schematics": {},
"architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"packages/playground-e2e/**/*.spec.ts",
"packages/playground-e2e/**/*.d.ts"
]
}
},
"e2e": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "packages/playground-e2e/jest.config.js",
"passWithNoTests": true
},
"outputs": ["coverage/packages/playground-e2e"]
}
}
},
"spectator": {
"root": "packages/spectator",
"sourceRoot": "packages/spectator/src",
"projectType": "library",
"schematics": {},
"architect": {
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"packages/spectator/**/*.ts",
"packages/spectator/**/*.spec.ts",
"packages/spectator/**/*.spec.tsx",
"packages/spectator/**/*.spec.js",
"packages/spectator/**/*.spec.jsx",
"packages/spectator/**/*.d.ts"
]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "packages/spectator/jest.config.js",
"passWithNoTests": true
},
"outputs": ["coverage/packages/spectator"]
},
"build": {
"builder": "@nrwl/node:package",
"options": {
"outputPath": "dist/packages/spectator",
"tsConfig": "packages/spectator/tsconfig.lib.json",
"packageJson": "packages/spectator/package.json",
"main": "packages/spectator/src/index.ts",
"assets": ["packages/spectator/*.md"]
},
"outputs": ["{options.outputPath}"]
}
}
},
"docs": {
"projectType": "application",
"root": "packages/docs",
"sourceRoot": "packages/docs/src",
"architect": {
"build": {
"builder": "@nx-plus/docusaurus:browser",
"options": {
"outputPath": "dist/packages/docs"
}
},
"serve": {
"builder": "@nx-plus/docusaurus:dev-server",
"options": {
"port": 3000
}
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/nest"
},
"defaultProject": "playground"
}