Reputation: 1172
I'm looking for a documentation table somewhere that matches TypeScript versions with Angular versions. Does the information exist?
Upvotes: 8
Views: 16202
Reputation: 61
You can determine the supported TypeScript version for a given version of Angular CLI directly from the source:
typescript
under devDependencies
.Upvotes: 6
Reputation: 16167
The Angular Web Site contains details on how to upgrade from one Angular version to another. In the details below, it will explain the minimum supported TypeScript version for each release. It will also mention the required minimum Node.js version.
For example, upgrading from 7 to 8 yields the following:
Note: If you're just looking for every detail, navigate to the source package.json file for Angular CLI. In there is a line which specifies the required version of TypeScript. You can navigate among releases by clicking the Branch
dropdown and selecting Tags
, where you pick from among the various versions.
Upvotes: 9