Projekt

Obecné

Profil

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