From bcc730c77bd48c892baeedf6a5a84ced0f87f35b Mon Sep 17 00:00:00 2001 From: Maria Hutt Date: Fri, 27 Jun 2025 13:45:18 -0700 Subject: [PATCH] chore(angular): update typescript to support Angular 20 (#30516) Issue number: N/A --------- ## What is the current behavior? Angular 20 test app is using an unsupported Typescript version. ## What is the new behavior? Angular 20 only supports Typescript 5.8+. I forgot to update it in an earlier [PR](https://github.com/ionic-team/ionic-framework/pull/30507). - Upgraded TS to the proper version. ## Does this introduce a breaking change? - [ ] Yes - [x] No ## Other information N/A --- packages/angular/test/apps/ng20/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/angular/test/apps/ng20/package.json b/packages/angular/test/apps/ng20/package.json index 48c327ae01..9fcb25508d 100644 --- a/packages/angular/test/apps/ng20/package.json +++ b/packages/angular/test/apps/ng20/package.json @@ -60,7 +60,7 @@ "eslint": "^8.57.0", "ts-loader": "^6.2.2", "ts-node": "^8.3.0", - "typescript": "^5.6.3", + "typescript": "^5.8.0", "wait-on": "^8.0.1", "webpack": "^5.61.0", "webpack-cli": "^4.9.2"