Skip to content
angelozerr edited this page May 13, 2016 · 4 revisions

Configure Node.js

When you install TypeScript, you can benefit with:

  • a TypeScript server tsserver which consumes TypeScript Language API to provide services like completion, validation, hover, hyperlink for TypeScript files.
  • a TypeScript compiler tsc to compile *.ts/*.tsx files to *.js/*.js.map files.

Those 2 command requires node.js. TypeScript IDE gives you the capability to use:

  • the embedded node.js (by default) if you don't want to install node.js
  • or choose your installed node.js.

Configure Node

Configure TypeScript

TypeScript IDE provides:

  • a server with tsserver for completion, hyperlink.
  • a compiler with tsc to compile *.ts/*.tsx files to *.js/*.js.map files.

You can use

  • the embedded typeScript bundle.
  • or choose your typescript bundle (that you can download with npm install typescript in your project).

Server

Configure TypeScript Server

Compiler

Configure TypeScript Compiler

Please see TypeScript Compiler section for more information.

Configure Build Path

If you wish to :

  • validate your ts files when you save your editor.
  • compile your ts files.

Please see Build Path section for more information.