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?
Try npm install -g typescript@latest
. You can also use npm update
instead of install, without the latest modifier.