-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworkspace.json
124 lines (124 loc) · 3.81 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
122
123
124
{
"version": 2,
"projects": {
"playground": {
"root": "packages/playground",
"sourceRoot": "packages/playground/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/web:build",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/playground",
"index": "packages/playground/src/index.html",
"main": "packages/playground/src/main.tsx",
"polyfills": "packages/playground/src/polyfills.ts",
"tsConfig": "packages/playground/tsconfig.app.json",
"assets": [
"packages/playground/src/favicon.ico",
"packages/playground/src/assets"
],
"styles": ["packages/playground/src/styles.scss"],
"scripts": [],
"webpackConfig": "@nrwl/react/plugins/webpack"
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "packages/playground/src/environments/environment.ts",
"with": "packages/playground/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
}
]
}
}
},
"serve": {
"executor": "@nrwl/web:dev-server",
"options": {
"buildTarget": "playground:build",
"hmr": true,
"port": 4201
},
"configurations": {
"production": {
"buildTarget": "playground:build:production",
"hmr": false
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["packages/playground/**/*.{ts,tsx,js,jsx}"]
}
},
"version": {
"executor": "@jscutlery/semver:version"
}
},
"tags": []
},
"react-rxjs": {
"root": "packages/react-rxjs",
"sourceRoot": "packages/react-rxjs/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nrwl/web:package",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/react-rxjs",
"tsConfig": "packages/react-rxjs/tsconfig.lib.json",
"project": "packages/react-rxjs/package.json",
"entryFile": "packages/react-rxjs/src/index.ts",
"external": ["react/jsx-runtime"],
"rollupConfig": "@nrwl/react/plugins/bundle-rollup",
"assets": [
{
"glob": "README.md",
"input": ".",
"output": "."
}
]
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["packages/react-rxjs/**/*.{ts,tsx,js,jsx}"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/packages/react-rxjs"],
"options": {
"jestConfig": "packages/react-rxjs/jest.config.js",
"passWithNoTests": true
}
},
"version": {
"executor": "@jscutlery/semver:version"
}
},
"tags": []
}
}
}