Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 505 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 505 Bytes

Horrific-deep-dive-into-TS

This is a repo aims at helping people understand the most fundamental and crucial concepts of TS. Also digging deep into some advanced topics!

Features of Typescript in short -

  1. Supports JS libs
  2. Superset of JS
  3. Static
  4. OOL (Object-Oriented)

Most Used commands to test the examples -

npx tsc --outDir ./dist .\test.ts node dist/test.js

For running ES2015 Promises and other features command will be -

npx tsc --outDir ./dist --lib es2015,dom .\test.ts