-
Notifications
You must be signed in to change notification settings - Fork 14
Configuration
angelozerr edited this page Nov 2, 2016
·
4 revisions
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/*.tsxfiles to*.js/*.js.mapfiles.
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.
To customize the Node.js version that you wish to use, you can do it with project TypeScript / Node.js preference page:

TypeScript IDE provides:
- a client which consumes with
tsserverto provide completion, hyperlink, etc for TypeScript. - a compiler with
tscto compile*.ts/*.tsxfiles to*.js/*.js.mapfiles.
You can use
- the
embedded typeScriptbundle. - or choose your
typescriptbundle (that you can download withnpm install typescriptin your project).
To customize the TypeScript version that you wish to use, you can do it with project TypeScript / Runtime preference page:

This page gives you the capability to trace request/response tsserver, which can be helpful to discovers some bugs.
Please see TypeScript Compiler section for more information.
If you wish to compile, build on save, please see Build Path section for more information.
- TypeScript IDE
- New and Noteworthy