安装Typescript

npm config set registry http://registry.npm.taobao.org
npm i -g typescript
tsc -v

新建ex1.ts

let hello:string="hello world"
let message:any="我是任意类型"
message=true
message=20
console.log(hello)

编译为js

tsc ex1.ts

启动html代码

安装live server

检测js代码

node xxx.js
npm install -g ts-node

 执行ts代码

ts-node ex1.ts

猜你喜欢

转载自blog.csdn.net/qq_26798533/article/details/119570123