Projekt

Obecné

Profil

Stáhnout (3.97 KB) Statistiky
| Větev: | Tag: | Revize:
1
{
2
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3
  "version": 1,
4
  "newProjectRoot": "projects",
5
  "projects": {
6
    "ymanager-frontend": {
7
      "root": "",
8
      "sourceRoot": "src",
9
      "projectType": "application",
10
      "prefix": "app",
11
      "schematics": {
12
        "@schematics/angular:component": {
13
          "style": "sass"
14
        }
15
      },
16
      "architect": {
17
        "build": {
18
          "builder": "@angular-devkit/build-angular:browser",
19
          "options": {
20
            "outputPath": "dist/ymanager-frontend",
21
            "index": "src/index.html",
22
            "main": "src/main.ts",
23
            "polyfills": "src/polyfills.ts",
24
            "tsConfig": "src/tsconfig.app.json",
25
            "assets": [
26
              "src/favicon.ico",
27
              "src/assets"
28
            ],
29
            "styles": [
30
              "node_modules/flag-icon-css/css/flag-icon.min.css",
31
              "src/styles.sass"
32
            ],
33
            "scripts": [],
34
            "es5BrowserSupport": true
35
          },
36
          "configurations": {
37
            "production": {
38
              "fileReplacements": [
39
                {
40
                  "replace": "src/environments/environment.ts",
41
                  "with": "src/environments/environment.prod.ts"
42
                }
43
              ],
44
              "optimization": true,
45
              "outputHashing": "all",
46
              "sourceMap": false,
47
              "extractCss": true,
48
              "namedChunks": false,
49
              "aot": true,
50
              "extractLicenses": true,
51
              "vendorChunk": false,
52
              "buildOptimizer": true,
53
              "budgets": [
54
                {
55
                  "type": "initial",
56
                  "maximumWarning": "2mb",
57
                  "maximumError": "5mb"
58
                }
59
              ]
60
            }
61
          }
62
        },
63
        "serve": {
64
          "builder": "@angular-devkit/build-angular:dev-server",
65
          "options": {
66
            "browserTarget": "ymanager-frontend:build"
67
          },
68
          "configurations": {
69
            "production": {
70
              "browserTarget": "ymanager-frontend:build:production"
71
            }
72
          }
73
        },
74
        "extract-i18n": {
75
          "builder": "@angular-devkit/build-angular:extract-i18n",
76
          "options": {
77
            "browserTarget": "ymanager-frontend:build"
78
          }
79
        },
80
        "test": {
81
          "builder": "@angular-devkit/build-angular:karma",
82
          "options": {
83
            "main": "src/test.ts",
84
            "polyfills": "src/polyfills.ts",
85
            "tsConfig": "src/tsconfig.spec.json",
86
            "karmaConfig": "src/karma.conf.js",
87
            "styles": [
88
              "src/styles.sass"
89
            ],
90
            "scripts": [],
91
            "assets": [
92
              "src/favicon.ico",
93
              "src/assets"
94
            ]
95
          }
96
        },
97
        "lint": {
98
          "builder": "@angular-devkit/build-angular:tslint",
99
          "options": {
100
            "tsConfig": [
101
              "src/tsconfig.app.json",
102
              "src/tsconfig.spec.json"
103
            ],
104
            "exclude": [
105
              "**/node_modules/**"
106
            ]
107
          }
108
        }
109
      }
110
    },
111
    "ymanager-frontend-e2e": {
112
      "root": "e2e/",
113
      "projectType": "application",
114
      "prefix": "",
115
      "architect": {
116
        "e2e": {
117
          "builder": "@angular-devkit/build-angular:protractor",
118
          "options": {
119
            "protractorConfig": "e2e/protractor.conf.js",
120
            "devServerTarget": "ymanager-frontend:serve"
121
          },
122
          "configurations": {
123
            "production": {
124
              "devServerTarget": "ymanager-frontend:serve:production"
125
            }
126
          }
127
        },
128
        "lint": {
129
          "builder": "@angular-devkit/build-angular:tslint",
130
          "options": {
131
            "tsConfig": "e2e/tsconfig.e2e.json",
132
            "exclude": [
133
              "**/node_modules/**"
134
            ]
135
          }
136
        }
137
      }
138
    }
139
  },
140
  "defaultProject": "ymanager-frontend"
141
}
(3-3/10)