# typescript-demo **Repository Path**: shardcn/typescript-demo ## Basic Information - **Project Name**: typescript-demo - **Description**: 学习Typescript - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-06-12 - **Last Updated**: 2025-06-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Typescript ## 安装 ``` npm install -g typescript ``` 创建tsconfig.json ``` tsc --init ``` 编译为index.js ``` tsc index.ts ``` 自动编译 ``` tsc --watch tsc --watch index.ts ```