forked from beeman/beehive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.json
158 lines (158 loc) · 4.47 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
{
"version": 1,
"projects": {
"api": {
"root": "apps/api",
"sourceRoot": "apps/api/src",
"projectType": "application",
"prefix": "api",
"schematics": {},
"architect": {
"build": {
"builder": "@nrwl/node:build",
"options": {
"outputPath": "dist/apps/api",
"main": "apps/api/src/main.ts",
"tsConfig": "apps/api/tsconfig.app.json",
"assets": ["apps/api/src/assets"]
},
"configurations": {
"production": {
"optimization": true,
"extractLicenses": true,
"inspect": false,
"fileReplacements": [
{
"replace": "apps/api/src/environments/environment.ts",
"with": "apps/api/src/environments/environment.prod.ts"
}
]
}
}
},
"serve": {
"builder": "@nrwl/node:execute",
"options": {
"buildTarget": "api:build"
}
},
"lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"tsConfig": ["apps/api/tsconfig.app.json", "apps/api/tsconfig.spec.json"],
"exclude": ["**/node_modules/**", "!apps/api/**/*"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "apps/api/jest.config.js",
"tsConfig": "apps/api/tsconfig.spec.json",
"passWithNoTests": true
}
}
}
},
"core": {
"root": "libs/core",
"sourceRoot": "libs/core/src",
"projectType": "library",
"schematics": {},
"architect": {
"lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"tsConfig": ["libs/core/tsconfig.lib.json", "libs/core/tsconfig.spec.json"],
"exclude": ["**/node_modules/**", "!libs/core/**/*"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/core/jest.config.js",
"tsConfig": "libs/core/tsconfig.spec.json",
"passWithNoTests": true
}
}
}
},
"course": {
"root": "libs/course",
"sourceRoot": "libs/course/src",
"projectType": "library",
"schematics": {},
"architect": {
"lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"tsConfig": ["libs/course/tsconfig.lib.json", "libs/course/tsconfig.spec.json"],
"exclude": ["**/node_modules/**", "!libs/course/**/*"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/course/jest.config.js",
"tsConfig": "libs/course/tsconfig.spec.json",
"passWithNoTests": true
}
}
}
},
"data": {
"root": "libs/data",
"sourceRoot": "libs/data/src",
"projectType": "library",
"schematics": {},
"architect": {
"lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"tsConfig": ["libs/data/tsconfig.lib.json", "libs/data/tsconfig.spec.json"],
"exclude": ["**/node_modules/**", "!libs/data/**/*"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/data/jest.config.js",
"tsConfig": "libs/data/tsconfig.spec.json",
"passWithNoTests": true
}
}
}
},
"auth": {
"root": "libs/auth",
"sourceRoot": "libs/auth/src",
"projectType": "library",
"schematics": {},
"architect": {
"lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"tsConfig": ["libs/auth/tsconfig.lib.json", "libs/auth/tsconfig.spec.json"],
"exclude": ["**/node_modules/**", "!libs/auth/**/*"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "libs/auth/jest.config.js",
"tsConfig": "libs/auth/tsconfig.spec.json",
"passWithNoTests": true
}
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/nest"
},
"defaultProject": "api"
}