说明
尚硅谷TypeScript教程(李立超老师TS新课)学习笔记。
安装过程
- 下载 node.js
- 安装 node.js
使用 npm 全局安装:npm i typescript -g
输入 tsc 就会出现相关信息
tsc
使用TS
- 创建一个ts文件
01.hello-ts.ts
console.log("hello ts");
- 使用tsc对该文件进行编译
tsc 01.hello-ts.ts
执行完之后,同级目录下就会编译出一个js文件