Introduction
References
Install Typescript
// Install node js 1st
npm install typescript -gUsing Typescript
// just simple
tsc test.ts
// watch changes
tsc test.ts -w
// change output filename
tsc myfile.ts myoutput.js
// compile multiple ts file in one shot
tsc a.ts b.ts --out myoutput.jsTypescript compiltation with Sublime Text 3


Typescript compiltation with Webpack
Last updated