Skip to content

Commit 4e72755

Browse files
authored
Merge pull request #2707 from bcgov/2649-upgrade-alcs
2649: Upgrade ALCS Angular from 17 to 20
2 parents 3027855 + 6e6d898 commit 4e72755

File tree

609 files changed

+23622
-18578
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

609 files changed

+23622
-18578
lines changed

alcs-frontend/angular.json

Lines changed: 37 additions & 9 deletions
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/build:application",
1919
"options": {
20-
"outputPath": "dist/alcs-frontend",
20+
"outputPath": {
21+
"base": "dist/alcs-frontend"
22+
},
2123
"index": "src/index.html",
22-
"main": "src/main.ts",
23-
"polyfills": "src/polyfills.ts",
24+
"polyfills": [
25+
"src/polyfills.ts"
26+
],
2427
"tsConfig": "tsconfig.app.json",
2528
"inlineStyleLanguage": "scss",
2629
"assets": [
@@ -37,7 +40,8 @@
3740
"node_modules"
3841
]
3942
},
40-
"scripts": []
43+
"scripts": [],
44+
"browser": "src/main.ts"
4145
},
4246
"configurations": {
4347
"production": {
@@ -68,9 +72,7 @@
6872
"outputHashing": "all"
6973
},
7074
"development": {
71-
"buildOptimizer": false,
7275
"optimization": false,
73-
"vendorChunk": true,
7476
"extractLicenses": false,
7577
"sourceMap": true,
7678
"namedChunks": true
@@ -79,7 +81,7 @@
7981
"defaultConfiguration": "production"
8082
},
8183
"serve": {
82-
"builder": "@angular-devkit/build-angular:dev-server",
84+
"builder": "@angular/build:dev-server",
8385
"configurations": {
8486
"production": {
8587
"buildTarget": "alcs-frontend:build:production"
@@ -91,7 +93,7 @@
9193
"defaultConfiguration": "development"
9294
},
9395
"extract-i18n": {
94-
"builder": "@angular-devkit/build-angular:extract-i18n",
96+
"builder": "@angular/build:extract-i18n",
9597
"options": {
9698
"buildTarget": "alcs-frontend:build"
9799
}
@@ -136,5 +138,31 @@
136138
"schematicCollections": [
137139
"@angular-eslint/schematics"
138140
]
141+
},
142+
"schematics": {
143+
"@schematics/angular:component": {
144+
"type": "component"
145+
},
146+
"@schematics/angular:directive": {
147+
"type": "directive"
148+
},
149+
"@schematics/angular:service": {
150+
"type": "service"
151+
},
152+
"@schematics/angular:guard": {
153+
"typeSeparator": "."
154+
},
155+
"@schematics/angular:interceptor": {
156+
"typeSeparator": "."
157+
},
158+
"@schematics/angular:module": {
159+
"typeSeparator": "."
160+
},
161+
"@schematics/angular:pipe": {
162+
"typeSeparator": "."
163+
},
164+
"@schematics/angular:resolver": {
165+
"typeSeparator": "."
166+
}
139167
}
140168
}

0 commit comments

Comments
 (0)