-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.json
121 lines (121 loc) · 3.28 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
110
111
112
113
114
115
116
117
118
119
120
121
{
"version": 1,
"projects": {
"store": {
"root": "apps/store",
"sourceRoot": "apps/store/src",
"projectType": "application",
"schematics": {},
"architect": {
"build": {
"builder": "@nrwl/web:build",
"options": {
"outputPath": "dist/apps/store",
"index": "apps/store/src/index.html",
"main": "apps/store/src/main.tsx",
"polyfills": "apps/store/src/polyfills.ts",
"tsConfig": "apps/store/tsconfig.app.json",
"assets": ["apps/store/src/favicon.ico", "apps/store/src/assets"],
"styles": ["apps/store/src/styles.scss"],
"scripts": [],
"webpackConfig": "@nrwl/react/plugins/webpack"
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "apps/store/src/environments/environment.ts",
"with": "apps/store/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
}
]
}
}
},
"serve": {
"builder": "@nrwl/web:dev-server",
"options": {
"buildTarget": "store:build"
},
"configurations": {
"production": {
"buildTarget": "store:build:production"
}
}
},
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["apps/store/**/*.{ts,tsx,js,jsx}"]
}
},
"test": {
"builder": "@nrwl/jest:jest",
"options": {
"jestConfig": "apps/store/jest.config.js",
"passWithNoTests": true
}
}
}
},
"store-e2e": {
"root": "apps/store-e2e",
"sourceRoot": "apps/store-e2e/src",
"projectType": "application",
"architect": {
"e2e": {
"builder": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "apps/store-e2e/cypress.json",
"tsConfig": "apps/store-e2e/tsconfig.e2e.json",
"devServerTarget": "store:serve"
},
"configurations": {
"production": {
"devServerTarget": "store:serve:production"
}
}
},
"lint": {
"builder": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["apps/store-e2e/**/*.{js,ts}"]
}
}
}
}
},
"cli": {
"defaultCollection": "@nrwl/react"
},
"schematics": {
"@nrwl/react": {
"application": {
"style": "scss",
"linter": "eslint",
"babel": true
},
"component": {
"style": "scss"
},
"library": {
"style": "scss",
"linter": "eslint"
}
}
},
"defaultProject": "store"
}