Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 1.68 KB

File metadata and controls

40 lines (25 loc) · 1.68 KB

Atom

Atom-TypeScript, a TypeScript language service for Atom developed by TypeStrong

Eclipse

Eclipse TypeScript Plug-in, an Eclipse plugin developed by Palantir.

Sublime Text 3/2

TypeScript Plugin for Sublime, which can be acquired through Package Control.

Vim

Syntax highlighting

Language Service Tools

There are two main TypeScript plugins:

If you would like to have as-you-type completion, you can install YouCompleteMe and add the following code into your .vimrc to specify what token will trigger the completion. YouCompleteMe will call into its respective TypeScript Plugin for semantic queries.

if !exists("g:ycm_semantic_triggers")
  let g:ycm_semantic_triggers = {}
endif
let g:ycm_semantic_triggers['typescript'] = ['.']

Visual Studio 2013/2015

Visual Studio comes with TypeScript when installing Microsoft Web Tools.

Visual Studio Code

Visual Studio Code, a lightweight cross-platform editor, comes with TypeScript support built in.