- Notifications
You must be signed in to change notification settings - Fork14
Configuration
angelozerr edited this pageNov 2, 2016 ·4 revisions
When you install TypeScript, you can benefit with:
- a TypeScript servertsserver which consumesTypeScript Language API to provide services like completion, validation, hover, hyperlink for TypeScript files.
- a TypeScript compilertsc to compile
*.ts
/*.tsx
files to*.js
/*.js.map
files.
Those 2 command requiresnode.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 theNode.js version
that you wish to use, you can do it with projectTypeScript / Node.js
preference page:
TypeScript IDE provides:
- a client which consumes with
tsserver
to provide completion, hyperlink, etc for TypeScript. - 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).
To customize theTypeScript version
that you wish to use, you can do it with projectTypeScript / Runtime
preference page:
This page gives you the capability to trace request/response tsserver, which can be helpful to discovers some bugs.
Please seeTypeScript Compiler section for more information.
If you wish to compile, build on save, please seeBuild Path section for more information.
- TypeScript IDE
- New and Noteworthy