How to get support of TypeScript with Sublime Text 3?

I am currently working in Angular and I get good support of Typescript with Sublime Text.

How can I get support of TypeScript with my Sublime Text editor?

I tried to hit Shift + Ctrl + P and then typed TypeScript but I did not get any TypeScript results.

I have gone through the official TypeScript website and I have cloned the Sublime Text to my PC.

I have installed TypeScript on my laptop - what can I do next?


You can do this by pressing Ctrl + shift + p write ipc and press enter to open the Package Manager. After that, type TypeScript and choose the first option which is published by http://typescriptlang.org.

Note: For Mac OS users, use Command (⌘) + shift + p instead of Ctrl + shift + p.


If it's not already done, you first have to install the Package installer, like that:

  • Press Ctrl + shift + p
  • Type "inst" and select Install Package Control

The following pop-up appears:

Package Control was successfully installed

Use Command Palette and type "Install Package" to get started

Now you can install the Typescript support like that:

  • Press Ctrl + shift + p
  • Type "inst" and select Package Control: Install Package
  • Type "type" and select "Typescript"

Now you can open a file.tsand change the type to Typescript clicking in the right bottom of the editor where Plain Text is selected by default.