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
- Host: GitHub
- URL: https://github.com/slaveofcode/typescript-cheatsheet
- Owner: slaveofcode
- License: mit
- Created: 2022-03-02T04:16:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-02T11:36:28.000Z (over 3 years ago)
- Last Synced: 2025-01-20T15:23:28.712Z (10 months ago)
- Language: TypeScript
- Size: 10.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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