Skip to content

Commit 9801bb6

Browse files
feat!: migrate to Angular 19
1 parent 72b5a95 commit 9801bb6

File tree

17 files changed

+25370
-25019
lines changed

17 files changed

+25370
-25019
lines changed

angular.json

+9-7
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,15 @@
1515
"prefix": "app",
1616
"architect": {
1717
"build": {
18-
"builder": "@angular-devkit/build-angular:browser",
18+
"builder": "@angular-devkit/build-angular:application",
1919
"options": {
20-
"outputPath": "dist/demo-app",
20+
"outputPath": {
21+
"base": "dist/demo-app"
22+
},
2123
"index": "projects/demo-app/src/index.html",
22-
"main": "projects/demo-app/src/main.ts",
23-
"polyfills": "projects/demo-app/src/polyfills.ts",
24+
"polyfills": [
25+
"projects/demo-app/src/polyfills.ts"
26+
],
2427
"tsConfig": "projects/demo-app/tsconfig.app.json",
2528
"inlineStyleLanguage": "scss",
2629
"assets": [
@@ -31,7 +34,8 @@
3134
"./node_modules/@angular/material/prebuilt-themes/indigo-pink.css",
3235
"projects/demo-app/src/styles.scss"
3336
],
34-
"scripts": []
37+
"scripts": [],
38+
"browser": "projects/demo-app/src/main.ts"
3539
},
3640
"configurations": {
3741
"production": {
@@ -56,9 +60,7 @@
5660
"outputHashing": "all"
5761
},
5862
"development": {
59-
"buildOptimizer": false,
6063
"optimization": false,
61-
"vendorChunk": true,
6264
"extractLicenses": false,
6365
"sourceMap": true,
6466
"namedChunks": true

0 commit comments

Comments
 (0)