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