kwood15 / typescript-playground

:clown_face: A TypeScript adventure

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Install TypeScript globally

npm install -g typescript

To transpile to a JavaScript file

tsc main.ts

To transpile to a JavaScript file and run it with Node

tsc main.ts && node main.js

ES5

tsc main.ts --target ES5 && node main.js

ES6

tsc main.ts --target ES6 && node main.js

About

:clown_face: A TypeScript adventure


Languages

Language:JavaScript 51.8%Language:TypeScript 48.2%