fix: Fixed handling of null-values for shard in chatroom-uri
[demos/kafka/chat] / angular.json
1 {
2   "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3   "version": 1,
4   "newProjectRoot": "projects",
5   "projects": {
6     "chatroom-frontend": {
7       "projectType": "application",
8       "schematics": {
9         "@schematics/angular:component": {
10           "style": "less"
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/chatroom-frontend",
21             "index": "src/index.html",
22             "main": "src/main.ts",
23             "polyfills": [
24               "zone.js"
25             ],
26             "tsConfig": "tsconfig.app.json",
27             "inlineStyleLanguage": "less",
28             "assets": [
29               "src/favicon.ico",
30               "src/assets"
31             ],
32             "styles": [
33               "src/styles.less"
34             ],
35             "scripts": []
36           },
37           "configurations": {
38             "production": {
39               "budgets": [
40                 {
41                   "type": "initial",
42                   "maximumWarning": "500kb",
43                   "maximumError": "1mb"
44                 },
45                 {
46                   "type": "anyComponentStyle",
47                   "maximumWarning": "2kb",
48                   "maximumError": "4kb"
49                 }
50               ],
51               "outputHashing": "all"
52             },
53             "development": {
54               "buildOptimizer": false,
55               "optimization": false,
56               "vendorChunk": true,
57               "extractLicenses": false,
58               "sourceMap": true,
59               "namedChunks": true
60             }
61           },
62           "defaultConfiguration": "production"
63         },
64         "serve": {
65           "builder": "@angular-devkit/build-angular:dev-server",
66           "configurations": {
67             "production": {
68               "browserTarget": "chatroom-frontend:build:production"
69             },
70             "development": {
71               "browserTarget": "chatroom-frontend:build:development"
72             }
73           },
74           "defaultConfiguration": "development"
75         },
76         "extract-i18n": {
77           "builder": "@angular-devkit/build-angular:extract-i18n",
78           "options": {
79             "browserTarget": "chatroom-frontend:build"
80           }
81         },
82         "test": {
83           "builder": "@angular-devkit/build-angular:karma",
84           "options": {
85             "polyfills": [
86               "zone.js",
87               "zone.js/testing"
88             ],
89             "tsConfig": "tsconfig.spec.json",
90             "inlineStyleLanguage": "less",
91             "assets": [
92               "src/favicon.ico",
93               "src/assets"
94             ],
95             "styles": [
96               "src/styles.less"
97             ],
98             "scripts": []
99           }
100         }
101       }
102     }
103   }
104 }