UsefulLinks
Computer Science
Programming
By Language
TypeScript Programming Language
1. Introduction to TypeScript
2. Development Environment Setup
3. Basic Types and Type System
4. Arrays and Collections
5. Enums and Literal Types
6. Functions and Callable Types
7. Object Types and Interfaces
8. Classes and Object-Oriented Programming
9. Advanced Type Features
10. Generics
11. Utility Types
12. Modules and Module System
13. Decorators and Metadata
14. Type Checking and Compiler Options
15. Working with JavaScript Libraries
16. Framework Integration
17. Build Tools and Workflow
18. Code Quality and Best Practices
19. Debugging and Troubleshooting
20. Advanced Patterns and Techniques
21. Migration and Adoption Strategies
2.
Development Environment Setup
2.1.
Prerequisites
2.1.1.
Node.js Fundamentals
2.1.2.
Package Manager Knowledge
2.1.3.
Command Line Basics
2.2.
Installing Required Tools
2.2.1.
Node.js Installation
2.2.2.
npm Package Manager
2.2.3.
yarn Package Manager
2.2.4.
Version Management Tools
2.3.
TypeScript Compiler Installation
2.3.1.
Global Installation
2.3.2.
Project-Specific Installation
2.3.3.
Version Selection
2.3.4.
Verification Steps
2.4.
Project Configuration
2.4.1.
tsconfig.json Creation
2.4.2.
Compiler Options
2.4.2.1.
target
2.4.2.2.
module
2.4.2.3.
lib
2.4.2.4.
outDir
2.4.2.5.
rootDir
2.4.2.6.
strict
2.4.2.7.
sourceMap
2.4.2.8.
declaration
2.4.2.9.
esModuleInterop
2.4.2.10.
allowSyntheticDefaultImports
2.4.3.
File Inclusion Rules
2.4.3.1.
include
2.4.3.2.
exclude
2.4.3.3.
files
2.4.4.
Path Mapping
2.4.5.
Module Resolution
2.5.
Editor Integration
2.5.1.
Visual Studio Code Setup
2.5.2.
TypeScript Language Service
2.5.3.
Extensions and Plugins
2.5.4.
IntelliSense Configuration
2.5.5.
Debugging Configuration
2.6.
Build Tools Integration
2.6.1.
Webpack Configuration
2.6.2.
Rollup Setup
2.6.3.
Parcel Integration
2.6.4.
Vite Configuration
Previous
1. Introduction to TypeScript
Go to top
Next
3. Basic Types and Type System