-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathworkspace.json
More file actions
69 lines (69 loc) · 1.81 KB
/
Copy pathworkspace.json
File metadata and controls
69 lines (69 loc) · 1.81 KB
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
{
"version": 2,
"projects": {
"the-crew-api": {
"root": "apps/the-crew-api",
"sourceRoot": "apps/the-crew-api/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/node:build",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/the-crew-api",
"main": "apps/the-crew-api/src/main.ts",
"tsConfig": "apps/the-crew-api/tsconfig.app.json",
"assets": ["apps/the-crew-api/src/assets"],
"tsPlugins": [
{
"name": "@nestjs/swagger/plugin"
}
]
},
"configurations": {
"production": {
"optimization": true
}
}
},
"serve": {
"executor": "@nrwl/node:execute",
"options": {
"buildTarget": "the-crew-api:build"
}
},
"test": {
"executor": "@nrwl/jest:jest",
"options": {
"jestConfig": "apps/myapp/jest.config.js"
}
}
}
},
"the-crew-ui": "apps/the-crew-ui",
"the-crew-ui-e2e": "apps/the-crew-ui-e2e",
"utils": {
"root": "libs/utils",
"sourceRoot": "libs/utils/src",
"projectType": "library",
"targets": {
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/utils/**/*.ts"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/libs/utils"],
"options": {
"jestConfig": "libs/utils/jest.config.js",
"passWithNoTests": true
}
}
},
"tags": []
}
}
}