How to install an older version of TypeScript on mac os x?

I use WebStorm for Mac for development, and the latest stable version only supports version 0.8.x TypeScript, while npm installs 0.9.x, creating various conflicts with the IDE.

Currently, npm will install version 0.9.x with:

npm install -g typescript 

How can I get it to install an older version of the TypeScript compiler?

+4
source share
1 answer
 npm install -g typescript@0.8.3 

must install the latest version of TypeScript version 0.8.

+6
source

Source: https://habr.com/ru/post/1489566/


All Articles