Projekt

Obecné

Profil

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