upgrade to angular 20

This commit is contained in:
2025-06-18 13:29:21 -05:00
parent 50152f9dda
commit 50994b101e
4 changed files with 1167 additions and 1918 deletions
+26
View File
@@ -91,5 +91,31 @@
}, },
"cli": { "cli": {
"analytics": false "analytics": false
},
"schematics": {
"@schematics/angular:component": {
"type": "component"
},
"@schematics/angular:directive": {
"type": "directive"
},
"@schematics/angular:service": {
"type": "service"
},
"@schematics/angular:guard": {
"typeSeparator": "."
},
"@schematics/angular:interceptor": {
"typeSeparator": "."
},
"@schematics/angular:module": {
"typeSeparator": "."
},
"@schematics/angular:pipe": {
"typeSeparator": "."
},
"@schematics/angular:resolver": {
"typeSeparator": "."
}
} }
} }
+1126 -1906
View File
File diff suppressed because it is too large Load Diff
+10 -10
View File
@@ -9,24 +9,24 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "19.2.11", "@angular/animations": "20.0.4",
"@angular/common": "19.2.11", "@angular/common": "20.0.4",
"@angular/compiler": "19.2.11", "@angular/compiler": "20.0.4",
"@angular/core": "19.2.11", "@angular/core": "20.0.4",
"@angular/platform-browser": "19.2.11", "@angular/platform-browser": "20.0.4",
"@angular/platform-browser-dynamic": "19.2.11", "@angular/platform-browser-dynamic": "20.0.4",
"luxon": "3.6.1", "luxon": "3.6.1",
"rxjs": "7.8.2", "rxjs": "7.8.2",
"tslib": "2.8.1", "tslib": "2.8.1",
"zone.js": "0.15.1" "zone.js": "0.15.1"
}, },
"devDependencies": { "devDependencies": {
"@angular/build": "19.2.12", "@angular/build": "^20.0.3",
"@angular/cli": "19.2.12", "@angular/cli": "20.0.3",
"@angular/compiler-cli": "19.2.11", "@angular/compiler-cli": "20.0.4",
"@types/luxon": "3.6.2", "@types/luxon": "3.6.2",
"@types/node": "22.15.30", "@types/node": "22.15.30",
"prettier": "3.5.3", "prettier": "3.5.3",
"typescript": "5.8.3" "typescript": "5.8.3"
} }
} }
+5 -2
View File
@@ -14,11 +14,14 @@
"sourceMap": true, "sourceMap": true,
"declaration": false, "declaration": false,
"experimentalDecorators": true, "experimentalDecorators": true,
"moduleResolution": "node", "moduleResolution": "bundler",
"importHelpers": true, "importHelpers": true,
"target": "ES2022", "target": "ES2022",
"module": "es2020", "module": "es2020",
"lib": ["es2020", "dom"], "lib": [
"es2020",
"dom"
],
"useDefineForClassFields": false "useDefineForClassFields": false
}, },
"angularCompilerOptions": { "angularCompilerOptions": {