TypeScript Emit Support
Incremental Build
The fastest incremental update possible
As soon as you open or edit a TypeScript file we do an intelligent emit of the expected JavaScript.

Note: You can disable this using
tsconfig.jsoncompileOnSave
Build
build command F6 to do a full emit + emit check.

View Live Output JavaScript
Ctrl|⌘ + Shift + M toggles the output compiled JS file for a give TypeScript file.

Compile and send JavaScript to the console
Ctrl|⌘ + M compiles the selected TypeScript, transpiles it to JavaScript and then sends it to the browser (chrome) console.
Can be used even if
compileOnSaveis false ;)