This repository is prepared for the 'TypeScript for Beginners' training sessions. There are 4 sessions in this training.
- A Brief Overview of HTML
- JavaScript Basics
- TypeScript Fundamental Concepts
- TypeScript OOP Concepts and Modules
Please find the presentations in the 'doc' folders.
Instructions for installing TypeScript compiler on Linux
1- Install npm package manager based on your Linux distribution, e.g. 'sudo apt install npm'
2- Install TypeScript compiler (tsc) via npm as follows 'npm install -g typescript'
Instructions for compiling TypeScript projects on Visual Studio Code
1- Start Visual Studio Code
2- Click 'File > Open Folder'
3- Select related project's root folder
4- Click 'View > Terminal' to show terminal
5- Type tsc command to compile code
6- Click F5 to start debugging, or Ctrl+F5 to run project without debugging
Good luck.