From JavaScript to TypeScript Crash Course/CheatSheet : Basics
TypeScript Compiler
Install
sudo npm install typescript -g
or
brew install typescript
Run the Compiler
tsc <fileName.ts>
If I have a file named "index.ts"
tsc index.ts
The TypeScript compiler essentially converts a TypeScript File to a JavaScript Fil...
realpythonproject.hashnode.dev5 min read