typescript-language-server
Language Server Protocol implementation for Typescript via tsserver.cmd :warning: WIP :warning:

Installing
npm install -g typescript-language-server
Running the language server
typescript-language-server --stdio
Note: typescript-language-server requires tsserver to be in path. You can install it using npm install -g typescript.
Supported Protocol features
- textDocument/completion
- textDocument/definition
- textDocument/didChange
- textDocument/didClose
- textDocument/didOpen
- textDocument/didSave
- textDocument/documentSymbol
- textDocument/hover
- textDocument/references
Development
Build
npm install
npm run build
Watch
npm install
npm run watch