Typescript tsc

From wikinotes

tsc is typescript's compiler.

Install

npm install -g typescript

Usage

tsc foo.ts                  # typecheck/build foo.js, writing 'foo.js' even if errors
tsc --noEmitOnError foo.ts  # typecheck/build foo.js, only writing 'foo.js' if no errors