Project

General

Profile

1
{
2
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3
  "version": 1,
4
  "newProjectRoot": "projects",
5
  "projects": {
6
    "monitor-dashboard": {
7
      "root": "",
8
      "sourceRoot": "src",
9
      "projectType": "application",
10
      "prefix": "app",
11
      "schematics": {
12
        "@schematics/angular:class": {
13
          "skipTests": true
14
        },
15
        "@schematics/angular:component": {
16
          "skipTests": true
17
        },
18
        "@schematics/angular:directive": {
19
          "skipTests": true
20
        },
21
        "@schematics/angular:guard": {
22
          "skipTests": true
23
        },
24
        "@schematics/angular:module": {
25
          "skipTests": true
26
        },
27
        "@schematics/angular:pipe": {
28
          "skipTests": true
29
        },
30
        "@schematics/angular:service": {
31
          "skipTests": true
32
        }
33
      },
34
      "architect": {
35
        "build": {
36
          "builder": "@angular-devkit/build-angular:browser",
37
          "options": {
38
            "aot": true,
39
            "outputPath": "dist/monitor-dashboard/browser",
40
            "index": "src/index.html",
41
            "main": "src/main.ts",
42
            "polyfills": "src/polyfills.ts",
43
            "tsConfig": "src/tsconfig.app.json",
44
            "assets": [
45
              "src/assets",
46
              "src/robots.txt"
47
            ],
48
            "styles": [
49
              "src/styles.css",
50
              "src/material.scss"
51
            ],
52
            "scripts": [
53
              "src/assets/common-assets/common/jquery.js",
54
              "src/assets/common-assets/common/uikit.min.js",
55
              "src/assets/common-assets/common/uikit-icons.min.js",
56
              "node_modules/jquery/dist/jquery.js"
57
            ]
58
          },
59
          "configurations": {
60
            "development": {
61
              "optimization": true,
62
              "outputHashing": "all",
63
              "sourceMap": false,
64
              "namedChunks": false,
65
              "aot": true,
66
              "extractLicenses": true,
67
              "vendorChunk": false,
68
              "buildOptimizer": true,
69
              "budgets": [
70
                {
71
                  "type": "initial",
72
                  "maximumWarning": "2mb",
73
                  "maximumError": "5mb"
74
                },
75
                {
76
                  "type": "anyComponentStyle",
77
                  "maximumWarning": "6kb"
78
                }
79
              ]
80
            },
81
            "beta": {
82
              "fileReplacements": [
83
                {
84
                  "replace": "src/environments/environment.ts",
85
                  "with": "src/environments/environment.beta.ts"
86
                }
87
              ],
88
              "optimization": true,
89
              "outputHashing": "all",
90
              "sourceMap": false,
91
              "namedChunks": false,
92
              "aot": true,
93
              "extractLicenses": true,
94
              "vendorChunk": false,
95
              "buildOptimizer": true,
96
              "budgets": [
97
                {
98
                  "type": "initial",
99
                  "maximumWarning": "2mb",
100
                  "maximumError": "5mb"
101
                },
102
                {
103
                  "type": "anyComponentStyle",
104
                  "maximumWarning": "6kb"
105
                }
106
              ]
107
            },
108
            "production": {
109
              "assets": [
110
                "src/assets",
111
                {
112
                  "input": "src/prod/",
113
                  "output": "/",
114
                  "glob": "*.txt"
115
                }
116
              ],
117
              "index": {
118
                "input": "src/prod/index.html",
119
                "output": "index.html"
120
              },
121
              "fileReplacements": [
122
                {
123
                  "replace": "src/environments/environment.ts",
124
                  "with": "src/environments/environment.prod.ts"
125
                }
126
              ],
127
              "optimization": true,
128
              "outputHashing": "all",
129
              "sourceMap": false,
130
              "namedChunks": false,
131
              "aot": true,
132
              "extractLicenses": true,
133
              "vendorChunk": false,
134
              "buildOptimizer": true,
135
              "budgets": [
136
                {
137
                  "type": "initial",
138
                  "maximumWarning": "2mb",
139
                  "maximumError": "5mb"
140
                },
141
                {
142
                  "type": "anyComponentStyle",
143
                  "maximumWarning": "6kb"
144
                }
145
              ]
146
            }
147
          }
148
        },
149
        "serve": {
150
          "builder": "@angular-devkit/build-angular:dev-server",
151
          "options": {
152
            "browserTarget": "monitor-dashboard:build"
153
          },
154
          "configurations": {
155
            "production": {
156
              "browserTarget": "monitor-dashboard:build:production"
157
            }
158
          }
159
        },
160
        "extract-i18n": {
161
          "builder": "@angular-devkit/build-angular:extract-i18n",
162
          "options": {
163
            "browserTarget": "monitor-dashboard:build"
164
          }
165
        },
166
        "test": {
167
          "builder": "@angular-devkit/build-angular:karma",
168
          "options": {
169
            "main": "src/test.ts",
170
            "polyfills": "src/polyfills.ts",
171
            "tsConfig": "src/tsconfig.spec.json",
172
            "karmaConfig": "src/karma.conf.js",
173
            "styles": [
174
              "src/styles.css"
175
            ],
176
            "scripts": [],
177
            "assets": [
178
              "src/assets"
179
            ]
180
          }
181
        },
182
        "lint": {
183
          "builder": "@angular-devkit/build-angular:tslint",
184
          "options": {
185
            "tsConfig": [
186
              "src/tsconfig.app.json",
187
              "src/tsconfig.spec.json"
188
            ],
189
            "exclude": [
190
              "**/node_modules/**"
191
            ]
192
          }
193
        },
194
        "server": {
195
          "builder": "@angular-devkit/build-angular:server",
196
          "options": {
197
            "outputPath": "dist/monitor-dashboard/server",
198
            "main": "server.ts",
199
            "tsConfig": "src/tsconfig.server.json"
200
          },
201
          "configurations": {
202
            "development": {
203
              "outputHashing": "media",
204
              "sourceMap": false,
205
              "optimization": true
206
            },
207
            "beta": {
208
              "outputHashing": "media",
209
              "fileReplacements": [
210
                {
211
                  "replace": "src/environments/environment.ts",
212
                  "with": "src/environments/environment.beta.ts"
213
                }
214
              ],
215
              "sourceMap": false,
216
              "optimization": true
217
            },
218
            "production": {
219
              "outputHashing": "media",
220
              "fileReplacements": [
221
                {
222
                  "replace": "src/environments/environment.ts",
223
                  "with": "src/environments/environment.prod.ts"
224
                }
225
              ],
226
              "sourceMap": false,
227
              "optimization": true
228
            }
229
          }
230
        },
231
        "serve-ssr": {
232
          "builder": "@nguniversal/builders:ssr-dev-server",
233
          "options": {
234
            "browserTarget": "monitor-dashboard:build",
235
            "serverTarget": "monitor-dashboard:server"
236
          },
237
          "configurations": {
238
            "production": {
239
              "browserTarget": "monitor-dashboard:build:production",
240
              "serverTarget": "monitor-dashboard:server:production"
241
            }
242
          }
243
        },
244
        "prerender": {
245
          "builder": "@nguniversal/builders:prerender",
246
          "options": {
247
            "browserTarget": "monitor-dashboard:build:production",
248
            "serverTarget": "monitor-dashboard:server:production",
249
            "routes": [
250
              "/"
251
            ]
252
          },
253
          "configurations": {
254
            "production": {}
255
          }
256
        }
257
      }
258
    },
259
    "monitor-dashboard-e2e": {
260
      "root": "e2e/",
261
      "projectType": "application",
262
      "prefix": "",
263
      "architect": {
264
        "e2e": {
265
          "builder": "@angular-devkit/build-angular:protractor",
266
          "options": {
267
            "protractorConfig": "e2e/protractor.conf.js",
268
            "devServerTarget": "monitor-dashboard:serve"
269
          },
270
          "configurations": {
271
            "production": {
272
              "devServerTarget": "monitor-dashboard:serve:production"
273
            }
274
          }
275
        },
276
        "lint": {
277
          "builder": "@angular-devkit/build-angular:tslint",
278
          "options": {
279
            "tsConfig": "e2e/tsconfig.e2e.json",
280
            "exclude": [
281
              "**/node_modules/**"
282
            ]
283
          }
284
        }
285
      }
286
    }
287
  },
288
  "defaultProject": "monitor-dashboard"
289
}
(3-3/7)