Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Determine Angular's supported Typescript version

So I'm looking for a documentation table somewhere that matches typescript versions with angular versions. Any luck?

like image 229
dcdgo Avatar asked Nov 08 '19 02:11

dcdgo


1 Answers

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 NodeJS version.

For example, upgrading from 7 to 8 yields the following:

  • Make sure you are using Node 10 or later.
  • Angular now uses TypeScript 3.4

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.

like image 146
theMayer Avatar answered Sep 26 '22 02:09

theMayer