-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.json
109 lines (109 loc) · 3.42 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
{
"version": 2,
"projects": {
"nest-opaque-error": {
"root": "apps/nest-opaque-error",
"sourceRoot": "apps/nest-opaque-error/src",
"projectType": "application",
"prefix": "nest-opaque-error",
"targets": {
"build": {
"executor": "@nrwl/node:build",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/nest-opaque-error",
"main": "apps/nest-opaque-error/src/main.ts",
"tsConfig": "apps/nest-opaque-error/tsconfig.app.json",
"assets": ["apps/nest-opaque-error/src/assets"]
},
"configurations": {
"production": {
"optimization": true,
"extractLicenses": true,
"inspect": false,
"fileReplacements": [
{
"replace": "apps/nest-opaque-error/src/environments/environment.ts",
"with": "apps/nest-opaque-error/src/environments/environment.prod.ts"
}
]
}
}
},
"serve": {
"executor": "@nrwl/node:execute",
"options": { "buildTarget": "nest-opaque-error:build" }
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": { "lintFilePatterns": ["apps/nest-opaque-error/**/*.ts"] }
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/apps/nest-opaque-error"],
"options": {
"jestConfig": "apps/nest-opaque-error/jest.config.js",
"passWithNoTests": true
}
}
}
},
"vue-vite-ts": {
"root": "apps/vue-vite-ts",
"sourceRoot": "apps/vue-vite-ts/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/workspace:run-commands",
"outputs": ["dist/apps/vue-vite-ts"],
"options": {
"commands": [
"npx vite build apps/vue-vite-ts --outDir dist/apps/vue-vite-ts",
"rm -rf dist/apps/vue-vite-ts",
"cp -r apps/vue-vite-ts/dist/* dist",
"rm -rf apps/vue-vite-ts/dist"
],
"parallel": false
}
},
"serve": {
"executor": "@nrwl/workspace:run-commands",
"options": { "command": "npx vite apps/vue-vite-ts" }
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": { "lintFilePatterns": ["apps/vue-vite-ts/**/*.ts"] }
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/apps/vue-vite-ts"],
"options": {
"jestConfig": "apps/vue-vite-ts/jest.config.js",
"passWithNoTests": true
}
}
}
},
"terminology": {
"root": "libs/terminology",
"sourceRoot": "libs/terminology/src",
"projectType": "library",
"targets": {
"lint": {
"executor": "@nrwl/linter:eslint",
"options": { "lintFilePatterns": ["libs/terminology/**/*.ts"] }
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/terminology"],
"options": {
"jestConfig": "libs/terminology/jest.config.js",
"passWithNoTests": true
}
}
}
}
},
"cli": { "defaultCollection": "@nrwl/workspace" },
"defaultProject": "terminology"
}