Skip to content

Commit 6c6f29c

Browse files
committed
Upgrade to Angular 19. Fix #498
1 parent 93790fd commit 6c6f29c

33 files changed

+7495
-5224
lines changed

angular.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@
1111
"schematics": {},
1212
"architect": {
1313
"build": {
14-
"builder": "@angular-devkit/build-angular:browser",
14+
"builder": "@angular-devkit/build-angular:application",
1515
"options": {
16-
"outputPath": "dist/ngx-schema-form",
16+
"outputPath": {
17+
"base": "dist/ngx-schema-form"
18+
},
1719
"index": "src/index.html",
18-
"main": "src/main.ts",
19-
"polyfills": "src/polyfills.ts",
20+
"polyfills": [
21+
"src/polyfills.ts"
22+
],
2023
"tsConfig": "src/tsconfig.app.json",
2124
"assets": [
2225
"src/favicon.ico",
@@ -26,12 +29,11 @@
2629
"src/styles.css"
2730
],
2831
"scripts": [],
29-
"vendorChunk": true,
3032
"extractLicenses": false,
31-
"buildOptimizer": false,
3233
"sourceMap": true,
3334
"optimization": false,
34-
"namedChunks": true
35+
"namedChunks": true,
36+
"browser": "src/main.ts"
3537
},
3638
"configurations": {
3739
"production": {
@@ -51,9 +53,7 @@
5153
"outputHashing": "all",
5254
"sourceMap": false,
5355
"namedChunks": false,
54-
"extractLicenses": true,
55-
"vendorChunk": false,
56-
"buildOptimizer": true
56+
"extractLicenses": true
5757
}
5858
},
5959
"defaultConfiguration": ""

0 commit comments

Comments
 (0)