typescriptnpmnpm-installnpm-package

How to update TypeScript to latest version with npm?


Currently I have TypeScript 1.0.3 version installed on my machine.
I want to update it to latest one such as 2.0.0.

How to do this with npm?


Solution

  • Try npm install -g typescript@latest. You can also use npm update instead of install, without the latest modifier.