-
Notifications
You must be signed in to change notification settings - Fork 14
Configuration
angelozerr edited this page May 13, 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
/*.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
.
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 withnpm install typescript
in your project).
Please see TypeScript Compiler section for more information.
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.
- TypeScript IDE
- New and Noteworthy