Skip to content

Commit

Permalink
refactor: drop support for older TypeScript versions
Browse files Browse the repository at this point in the history
Drops support for versions of TypeScript older than 5.2

BREAKING CHANGE:
Versions of TypeScript older than 5.2 are no longer supported.
  • Loading branch information
alan-agius4 committed Sep 20, 2023
1 parent c0eb2eb commit 1c00fd3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/angular_devkit/build_angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"ng-packagr": "^17.0.0 || ^17.0.0-next.1",
"protractor": "^7.0.0",
"tailwindcss": "^2.0.0 || ^3.0.0",
"typescript": ">=4.9.3 <5.3"
"typescript": ">=5.2 <5.3"
},
"peerDependenciesMeta": {
"@angular/localize": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"dependencies": {
"@angular-devkit/core": "^<%= coreVersion %>",
"@angular-devkit/schematics": "^<%= schematicsVersion %>",
"typescript": "~5.1.3"
"typescript": "~5.2.2"
},
"devDependencies": {
"@types/node": "^16.11.7",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"dependencies": {
"@angular-devkit/core": "^<%= coreVersion %>",
"@angular-devkit/schematics": "^<%= schematicsVersion %>",
"typescript": "~5.1.3"
"typescript": "~5.2.2"
},
"devDependencies": {
"@types/node": "^16.11.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/ngtools/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"dependencies": {},
"peerDependencies": {
"@angular/compiler-cli": "^17.0.0 || ^17.0.0-next.0",
"typescript": ">=4.9.3 <5.2",
"typescript": ">=5.2 <5.3",
"webpack": "^5.54.0"
},
"devDependencies": {
Expand Down

0 comments on commit 1c00fd3

Please sign in to comment.