summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/angular.json
blob: fc8a78abf4fc2869755a5bd30fa5007932152aea (plain)
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
{
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  "version": 1,
  "newProjectRoot": "projects",
  "projects": {
    "ceph-dashboard": {
      "root": "",
      "sourceRoot": "src",
      "projectType": "application",
      "architect": {
        "build": {
          "builder": "@angular-devkit/build-angular:browser",
          "options": {
            "aot": true,
            "i18nFormat": "xlf",
            "i18nMissingTranslation": "ignore",
            "outputPath": "dist",
            "index": "src/index.html",
            "main": "src/main.ts",
            "tsConfig": "src/tsconfig.app.json",
            "polyfills": "src/polyfills.ts",
            "assets": [
              "src/assets",
              "src/favicon.ico",
              {
                "glob": "**/swagger-ui.css",
                "input": "node_modules/swagger-ui-dist",
                "output": "."
              },
              {
                "glob": "**/swagger-ui-bundle.js",
                "input": "node_modules/swagger-ui-dist",
                "output": "."
              }
            ],
            "styles": [
              "node_modules/ngx-toastr/toastr.css",
              "node_modules/bootstrap/dist/css/bootstrap.css",
              "node_modules/fork-awesome/css/fork-awesome.css",
              "node_modules/awesome-bootstrap-checkbox/awesome-bootstrap-checkbox.css",
              "node_modules/ngx-bootstrap/datepicker/bs-datepicker.css",
              "src/styles.scss",
              "src/vendor.overrides.scss",
              "node_modules/ng2-tree/styles.css"
            ],
            "scripts": [
              "node_modules/chart.js/dist/Chart.bundle.js"
            ]
          },
          "configurations": {
            "production": {
              "optimization": true,
              "outputHashing": "all",
              "sourceMap": false,
              "extractCss": true,
              "namedChunks": false,
              "extractLicenses": true,
              "vendorChunk": false,
              "buildOptimizer": true,
              "fileReplacements": [
                {
                  "replace": "src/environments/environment.ts",
                  "with": "src/environments/environment.prod.ts"
                }
              ]
            },
            "cs": {
              "outputPath": "dist/cs/",
              "i18nFile": "src/locale/messages.cs.xlf",
              "i18nLocale": "cs"
            },
            "de-DE": {
              "outputPath": "dist/de-DE/",
              "i18nFile": "src/locale/messages.de-DE.xlf",
              "i18nLocale": "de-DE"
            },
            "en-US": {
              "outputPath": "dist/en-US/",
              "i18nFile": "src/locale/messages.en-US.xlf",
              "i18nLocale": "en-US"
            },
            "es-ES": {
              "outputPath": "dist/es-ES/",
              "i18nFile": "src/locale/messages.es-ES.xlf",
              "i18nLocale": "es-ES"
            },
            "fr-FR": {
              "outputPath": "dist/fr-FR/",
              "i18nFile": "src/locale/messages.fr-FR.xlf",
              "i18nLocale": "fr-FR"
            },
            "id-ID": {
              "outputPath": "dist/id-ID/",
              "i18nFile": "src/locale/messages.id-ID.xlf",
              "i18nLocale": "id-ID"
            },
            "it-IT": {
              "outputPath": "dist/it-IT/",
              "i18nFile": "src/locale/messages.it-IT.xlf",
              "i18nLocale": "it-IT"
            },
            "ja-JP": {
              "outputPath": "dist/ja-JP/",
              "i18nFile": "src/locale/messages.ja-JP.xlf",
              "i18nLocale": "ja-JP"
            },
            "pl-PL": {
              "outputPath": "dist/pl-PL/",
              "i18nFile": "src/locale/messages.pl-PL.xlf",
              "i18nLocale": "pl-PL"
            },
            "pt-BR": {
              "outputPath": "dist/pt-BR/",
              "i18nFile": "src/locale/messages.pt-BR.xlf",
              "i18nLocale": "pt-BR"
            },
            "zh-CN": {
              "outputPath": "dist/zh-CN/",
              "i18nFile": "src/locale/messages.zh-CN.xlf",
              "i18nLocale": "zh-CN"
            },
            "zh-TW": {
              "outputPath": "dist/zh-TW/",
              "i18nFile": "src/locale/messages.zh-TW.xlf",
              "i18nLocale": "zh-TW"
            }
          }
        },
        "serve": {
          "builder": "@angular-devkit/build-angular:dev-server",
          "options": {
            "browserTarget": "ceph-dashboard:build",
            "proxyConfig": "proxy.conf.json"
          },
          "configurations": {
            "production": {
              "browserTarget": "ceph-dashboard:build:production"
            },
            "cs": {
              "browserTarget": "ceph-dashboard:build:cs"
            },
            "de-DE": {
              "browserTarget": "ceph-dashboard:build:de-DE"
            },
            "en-US": {
              "browserTarget": "ceph-dashboard:build:en-US"
            },
            "es-ES": {
              "browserTarget": "ceph-dashboard:build:es-ES"
            },
            "fr-FR": {
              "browserTarget": "ceph-dashboard:build:fr-FR"
            },
            "id-ID": {
              "browserTarget": "ceph-dashboard:build:id-ID"
            },
            "it-IT": {
              "browserTarget": "ceph-dashboard:build:it-IT"
            },
            "ja-JP": {
              "browserTarget": "ceph-dashboard:build:ja-JP"
            },
            "pl-PL": {
              "browserTarget": "ceph-dashboard:build:pl-PL"
            },
            "pt-BR": {
              "browserTarget": "ceph-dashboard:build:pt-BR"
            },
            "zh-CN": {
              "browserTarget": "ceph-dashboard:build:zh-CN"
            },
            "zh-TW": {
              "browserTarget": "ceph-dashboard:build:zh-TW"
            }
          }
        },
        "extract-i18n": {
          "builder": "@angular-devkit/build-angular:extract-i18n",
          "options": {
            "browserTarget": "ceph-dashboard:build"
          }
        },
        "lint": {
          "builder": "@angular-devkit/build-angular:tslint",
          "options": {
            "tsConfig": [
              "src/tsconfig.app.json",
              "src/tsconfig.spec.json"
            ],
            "exclude": [
              "**/node_modules/**"
            ]
          }
        }
      }
    },
    "ceph-dashboard-e2e": {
      "root": "",
      "sourceRoot": "",
      "projectType": "application",
      "architect": {
        "e2e": {
          "builder": "@angular-devkit/build-angular:protractor",
          "options": {
            "protractorConfig": "./protractor.conf.js",
            "devServerTarget": "ceph-dashboard:serve"
          }
        },
        "lint": {
          "builder": "@angular-devkit/build-angular:tslint",
          "options": {
            "tsConfig": [
              "e2e/tsconfig.e2e.json"
            ],
            "exclude": [
              "**/node_modules/**"
            ]
          }
        }
      }
    }
  },
  "defaultProject": "ceph-dashboard",
  "schematics": {
    "@schematics/angular:component": {
      "prefix": "cd",
      "styleext": "scss"
    },
    "@schematics/angular:directive": {
      "prefix": "cd"
    }
  }
}