An open API service indexing awesome lists of open source software.

https://github.com/slaveofcode/typescript-cheatsheet

Simple & practical typescript cheatsheet
https://github.com/slaveofcode/typescript-cheatsheet

Last synced: 4 months ago
JSON representation

Simple & practical typescript cheatsheet

Awesome Lists containing this project

README

          

# typescript-cheatsheet
Simple & practical typescript cheatsheet

## Installation

Install typescript as development dependency

> npm i -D typescript

Helper to run typescript code without transpiling

> npm i -D ts-node

## Init Project

Init typescript project configuration

> npx tsc --init

## Build TS to Javascript

> npx tsc

Transpiled `.js` will be on `./dist` folder