forked from OpenAPITools/openapi-generator-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.json
68 lines (68 loc) · 1.98 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
{
"version": 1,
"projects": {
"generator-cli": {
"root": "apps/generator-cli",
"sourceRoot": "apps/generator-cli/src",
"projectType": "application",
"prefix": "generator-cli",
"schematics": {},
"architect": {
"build": {
"builder": "@nrwl/node:build",
"options": {
"outputPath": "dist/apps/generator-cli",
"main": "apps/generator-cli/src/main.ts",
"tsConfig": "apps/generator-cli/tsconfig.app.json",
"webpackConfig": "apps/generator-cli/webpack.config.js",
"assets": [
"apps/generator-cli/src/config.schema.json",
"apps/generator-cli/src/README.md"
]
},
"configurations": {
"production": {
"optimization": true,
"extractLicenses": true,
"inspect": false,
"fileReplacements": [
{
"replace": "apps/generator-cli/src/environments/environment.ts",
"with": "apps/generator-cli/src/environments/environment.prod.ts"
}
]
}
}
},
"serve": {
"builder": "@nrwl/node:execute",
"options": {
"buildTarget": "generator-cli:build"
}
},
"lint": {
"builder": "@nrwl/linter:lint",
"options": {
"linter": "eslint",
"tsConfig": [
"apps/generator-cli/tsconfig.app.json",
"apps/generator-cli/tsconfig.spec.json"
],
"exclude": ["**/node_modules/**", "!apps/generator-cli/**/*"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "apps/generator-cli/jest.config.js",
"passWithNoTests": true
}
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/nest"
},
"defaultProject": "generator-cli"
}