Course content and exercises for mastering TypeScript
Built & maintained by Umar (MUmarOfficial)
- About
- What’s Inside
- Prerequisites
- Setup & Usage
- Scripts
- Folder Structure
- Contributing
- License & Credits
This repository is the companion codebase for my TypeScript learning series. Everything here is meant for practice, experiments, and deepening your TS muscle memory.
Whether you're just starting or leveling up, this repo should give you real code, not just theory.
TS/
— source TypeScript files, modules, lessonsdist/
— compiled JavaScript output (build artifacts)JS/
— some JS files (if needed for reference)Practice Problems TS/
— extra challenges & exercisesProblems/
— specific question setstsconfig.json
— TS compiler configpackage.json
/package-lock.json
— dependencies & scripts
Before diving in, make sure you have:
- Node.js (v14+ recommended)
- npm (or yarn, whichever you prefer)
- Basic familiarity with JavaScript (ES6+)
- Curiosity to read, break, fix, and build
- Clone the repo
git clone https://github.com/MUmarOfficial/TypeScript-Course-Code.git cd TypeScript-Course-Code