Table of Contents

Typescript - tsc (official compiler)

About

tsc is the official compiler that transform/compile a typescript file into a javascript script

Management

Install

yarn add typescript  --dev
# yarn
yarn global add typescript
# npm
npm install -g typescript

Compilation

tsc typescript.ts
ls
typescript.js

Option

Compiler options can be set:

The Playground has a GUI

Typescript Playground Conf

API