【TypeScript】学习笔记(二)TypeSript的安装
👉安装
1、执行安装命令
1 | npm install -g typescript |
2、检测安装是否成功
1 | tsc -v |
👉项目中使用
1、创建 tsconfig.json
配置文件
1 | tsc --init |
2、tsconfig.json
1 | { |
3、监视 tsconfig.json
-
vscode -> 终端 -> 运行任务 -> typescript -> tsc: 构建 tsconfig.json
评论