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