Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 379 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 379 Bytes

TypeScript-learn

My TypeScript Learning Records

new TS Project

yarn init --yes
yarn add typescript --dev

# 编译 某个文件
yarn tsc xx.ts

配置

# 生成配置文件
yarn tsc --init
# 编译整个项目
yarn tsc 

# tsconfig.json
"target": "es2016",  
"module": "commonjs",
"rootDir": "src",     
"sourceMap": true, 
"outDir": "dist",