This repository is dedicated to learning and exploring the features of TypeScript, a powerful superset of JavaScript that enhances code quality with static typing and advanced features.
- Type Annotations: Learn the basics of type declarations for variables and functions.
- Interfaces and Classes: Explore object-oriented programming in TypeScript.
- Generics: Implement reusable code using generic types.
- Modules: Structure code efficiently using modules.
- Advanced Types: Work with union, intersection, mapped, and conditional types.
- TypeScript and JavaScript Interoperability: Understand how TypeScript compiles to JavaScript.
- src/: Contains all the TypeScript files (
.ts
) for learning and experimentation.intro.ts
: A simple file to get started with TypeScript basics.