-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathangular.json
More file actions
153 lines (153 loc) · 5.34 KB
/
angular.json
File metadata and controls
153 lines (153 loc) · 5.34 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"dashboards": {
"projectType": "application",
"schematics": {
"@schematics/angular:application": {
"strict": true
}
},
"root": "projects/dashboards",
"sourceRoot": "projects/dashboards/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-builders/custom-webpack:browser",
"options": {
"customWebpackConfig": {
"path": "webpack.config.js"
},
"outputPath": "dist/dashboards",
"index": "projects/dashboards/src/index.html",
"main": "projects/dashboards/src/main.ts",
"polyfills": "projects/dashboards/src/polyfills.ts",
"tsConfig": "projects/dashboards/tsconfig.app.json",
"assets": [
"projects/dashboards/src/favicon.ico",
"projects/dashboards/src/assets",
{
"glob": "**/*",
"input": "dist/@angular",
"output": "/assets/@angular"
},
{
"glob": "**/*",
"input": "dist/rxjs",
"output": "/assets/rxjs"
},
{
"glob": "**/*",
"input": "dist/@ngrx",
"output": "/assets/@ngrx"
},
{
"glob": "**/highcharts.js",
"input": "node_modules/highcharts",
"output": "/assets/highcharts"
},
{
"glob": "**/*",
"input": "dist/highcharts-angular",
"output": "/assets/highcharts-angular"
}
],
"styles": ["projects/dashboards/src/styles.css"],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "projects/dashboards/src/environments/environment.ts",
"with": "projects/dashboards/src/environments/environment.prod.ts"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-builders/custom-webpack:dev-server",
"options": {
"browserTarget": "dashboards:build"
},
"configurations": {
"production": {
"browserTarget": "dashboards:build:production"
},
"development": {
"browserTarget": "dashboards:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "dashboards:build"
}
},
"test": {
"builder": "@angular-builders/custom-webpack:karma",
"options": {
"customWebpackConfig": {
"path": "webpack.config.js"
},
"main": "projects/dashboards/src/test.ts",
"polyfills": "projects/dashboards/src/polyfills.ts",
"tsConfig": "projects/dashboards/tsconfig.spec.json",
"karmaConfig": "projects/dashboards/karma.conf.js",
"assets": [
"projects/dashboards/src/favicon.ico",
"projects/dashboards/src/assets"
],
"styles": ["projects/dashboards/src/styles.css"],
"scripts": [
"dist/rxjs/bundles/rxjs.umd.js",
"dist/rxjs/bundles/operators.umd.js",
"dist/@angular/compiler/bundles/compiler.umd.js",
"dist/@angular/animations/bundles/animations.umd.js",
"dist/@angular/core/bundles/core.umd.js",
"dist/@angular/common/bundles/common.umd.js",
"dist/@angular/common/bundles/common-http.umd.js",
"dist/@angular/forms/bundles/forms.umd.js",
"dist/@angular/platform-browser/bundles/platform-browser.umd.js",
"dist/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js",
"dist/@angular/router/bundles/router.umd.js",
"dist/@ngrx/store/bundles/ngrx-store.umd.js",
"dist/@ngrx/effects/bundles/ngrx-effects.umd.js",
"dist/@ngrx/store/bundles/ngrx-store-devtools.umd.js",
"node_modules/highcharts/highcharts.js",
"dist/highcharts-angular/highcharts-angular.umd.js"
]
}
}
}
}
},
"defaultProject": "dashboards"
}