TypeScript环境搭建
2023-07-05 本文已影响0人
翟小乙
一、安装配置
1.1 cmd安装
npm install -g typescript
1.2 查看版本
tsc -v
1.3 编译
tsc helloworld.ts
1.4 监听编译
tsc -w helloworld.ts
二、生成tsconfig.json
2.1 运行命令
tsc --init
2.2 修改配置
noEmitOnError:true
npm install -g typescript
tsc -v
tsc helloworld.ts
tsc -w helloworld.ts
tsc --init
noEmitOnError:true