1 NPM 安装 TypeScript
npm install -g typescript
查看版本
tsc -v
2 创建ts文件
test.ts
3 编译js文件,生成文件test.js
tsc test.ts
4 执行
node test.js
原文地址:https://www.cnblogs.com/yintian908/p/11157389.html
时间: 2024-11-05 23:23:38
1 NPM 安装 TypeScript
npm install -g typescript
查看版本
tsc -v
2 创建ts文件
test.ts
3 编译js文件,生成文件test.js
tsc test.ts
4 执行
node test.js
原文地址:https://www.cnblogs.com/yintian908/p/11157389.html