-
Notifications
You must be signed in to change notification settings - Fork 3
/
angular.json
209 lines (209 loc) · 7.16 KB
/
angular.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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"gear3": {
"projectType": "application",
"schematics": {},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/gear3",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"assets": [
"src/assets",
{
"glob": "*",
"input": "node_modules/@uswds/uswds/dist/fonts",
"output": "assets/fonts/"
},
{
"glob": "*",
"input": "node_modules/@uswds/uswds/dist/img",
"output": "assets/img/"
}
],
"styles": [
"src/custom-theme.scss",
"src/styles.css",
"src/assets/fontawesome-free-5.13.0-web/css/all.min.css",
"src/assets/bootstrap-theme/bootstrap.min.css",
"node_modules/bootstrap-table/dist/bootstrap-table.min.css",
"node_modules/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css",
"node_modules/@ng-select/ng-select/themes/default.theme.css",
"node_modules/@uswds/uswds/dist/css/uswds.css"
],
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"src/assets/jquery-floatthead-2.2.5/jquery.floatThead.js",
"src/assets/fontawesome-free-5.13.0-web/js/all.min.js",
"node_modules/bootstrap/dist/js/bootstrap.bundle.min.js",
"node_modules/bootstrap-table/dist/bootstrap-table.min.js",
"node_modules/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js",
"node_modules/tableexport.jquery.plugin/libs/FileSaver/FileSaver.min.js",
"node_modules/tableexport.jquery.plugin/libs/js-xlsx/xlsx.core.min.js",
"node_modules/jspdf/dist/jspdf.umd.min.js",
"node_modules/jspdf-autotable/dist/jspdf.plugin.autotable.js",
"node_modules/tableexport.jquery.plugin/libs/es6-promise/es6-promise.auto.min.js",
"node_modules/tableexport.jquery.plugin/libs/html2canvas/html2canvas.min.js",
"node_modules/tableexport.jquery.plugin/tableExport.min.js",
"node_modules/bootstrap-table/dist/extensions/export/bootstrap-table-export.min.js",
"node_modules/bootstrap-table/dist/extensions/toolbar/bootstrap-table-toolbar.min.js",
"node_modules/@uswds/uswds/dist/js/uswds.js"
],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "6mb",
"maximumError": "7mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
},
"staging": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.staging.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "6mb",
"maximumError": "7mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
},
"development": {
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "6mb",
"maximumError": "7mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"buildTarget": "gear3:build"
},
"configurations": {
"production": {
"buildTarget": "gear3:build:production"
},
"staging": {
"buildTarget": "gear3:build:staging"
},
"development": {
"buildTarget": "gear3:build:development"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "gear3:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.css"
],
"scripts": []
}
},
"e2e": {
"builder": "@angular-devkit/build-angular:protractor",
"options": {
"protractorConfig": "e2e/protractor.conf.js",
"devServerTarget": "gear3:serve"
},
"configurations": {
"production": {
"devServerTarget": "gear3:serve:production"
},
"staging": {
"devServerTarget": "gear3:serve:staging"
}
}
}
}
}
},
"cli": {
"analytics": "3f92fd32-6d37-41df-b2e0-b7821dc67e46"
}
}