-
Notifications
You must be signed in to change notification settings - Fork 14
TypeScript Compiler
angelozerr edited this page May 13, 2016
·
8 revisions
TypeScript IDE provides 2 means to compile ts files :
- with a launch
Run As -> Compile TypeScript. - when ts file is saved (compile/build on save).
Do Run As -> Compile TypeScript
To compile/build on save you need to check Compile on save? in the project properties TypeScript/Compiler:
Compile on save means compile ts file which is saved.
Here a demo with compile on save:

Build on save means compile the whole ts file of tsconfig.json when a ts file (which belongs to tsconfig.json) is saved. Pay attention, it can be slow, but if you use "outFile" insid eyour tsconfig.json, it can be helpful.
Here a demo with build on save:

- TypeScript IDE
- New and Noteworthy