|
22 | 22 | "prefix": "app", |
23 | 23 | "architect": { |
24 | 24 | "build": { |
25 | | - "builder": "@angular-devkit/build-angular:application", |
| 25 | + "builder": "@angular-devkit/build-angular:browser-esbuild", |
26 | 26 | "options": { |
27 | | - "outputPath": "dist", |
| 27 | + "baseHref": "/ng-app/", |
| 28 | + "outputPath": "../../collected_static/ng-app", |
28 | 29 | "index": "src/index.html", |
29 | | - "browser": "src/main.ts", |
| 30 | + "main": "src/main.ts", |
30 | 31 | "polyfills": [ |
31 | 32 | "zone.js" |
32 | 33 | ], |
|
83 | 84 | "defaultConfiguration": "production" |
84 | 85 | }, |
85 | 86 | "serve": { |
86 | | - "builder": "@angular-devkit/build-angular:dev-server", |
| 87 | + "builder": "@angular/build:dev-server", |
87 | 88 | "configurations": { |
88 | 89 | "production": { |
89 | 90 | "buildTarget": "seed:build:production" |
|
94 | 95 | }, |
95 | 96 | "defaultConfiguration": "development", |
96 | 97 | "options": { |
97 | | - "disableHostCheck": true, |
98 | 98 | "host": "0.0.0.0", |
99 | 99 | "proxyConfig": "proxy.conf.mjs" |
100 | 100 | } |
101 | 101 | }, |
102 | 102 | "extract-i18n": { |
103 | | - "builder": "@angular-devkit/build-angular:extract-i18n" |
| 103 | + "builder": "@angular/build:extract-i18n" |
104 | 104 | }, |
105 | 105 | "test": { |
106 | | - "builder": "@angular-devkit/build-angular:karma", |
| 106 | + "builder": "@angular/build:karma", |
107 | 107 | "options": { |
108 | 108 | "polyfills": [ |
109 | 109 | "zone.js", |
|
134 | 134 | } |
135 | 135 | } |
136 | 136 | } |
| 137 | + }, |
| 138 | + "schematics": { |
| 139 | + "@schematics/angular:component": { |
| 140 | + "type": "component" |
| 141 | + }, |
| 142 | + "@schematics/angular:directive": { |
| 143 | + "type": "directive" |
| 144 | + }, |
| 145 | + "@schematics/angular:service": { |
| 146 | + "type": "service" |
| 147 | + }, |
| 148 | + "@schematics/angular:guard": { |
| 149 | + "typeSeparator": "." |
| 150 | + }, |
| 151 | + "@schematics/angular:interceptor": { |
| 152 | + "typeSeparator": "." |
| 153 | + }, |
| 154 | + "@schematics/angular:module": { |
| 155 | + "typeSeparator": "." |
| 156 | + }, |
| 157 | + "@schematics/angular:pipe": { |
| 158 | + "typeSeparator": "." |
| 159 | + }, |
| 160 | + "@schematics/angular:resolver": { |
| 161 | + "typeSeparator": "." |
| 162 | + } |
137 | 163 | } |
138 | 164 | } |
0 commit comments