Skip to content

Instantly share code, notes, and snippets.

@tareq3
Last active December 6, 2018 06:48
Show Gist options
  • Save tareq3/cba7557a88c44db760aeac9a368ac885 to your computer and use it in GitHub Desktop.
Save tareq3/cba7557a88c44db760aeac9a368ac885 to your computer and use it in GitHub Desktop.
## Type Script Crash Course
### Install type script using npm
```
npm i -g typescript
```
### compile a type script code into java scipt
```
tsc filename.ts
```
### for compiling automatically in watch mode
```
tsc filename.ts -w
```
### for opening browser inspector view
```
cntl + shift + i
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment