Ts转换为Js

  1. 安装tsc工具
npm install -g tsc
copy success
1
  1. 转换.ts到.js
# 执行命令 会自动生成同名的.js文件
nsc ./demo.ts 
copy success
1
2