Overview
TypeScript is a superset of JavaScript that adds a type system and other features. This article introduces the core concepts and usage of TypeScript.
1. Installation and Configuration
1.1 Installing TypeScript
# Global install
npm install -g typescript
# Project install
npm install typescript --save-dev
# Initialize config
tsc --init
3/15/24About 3 min