psweb-typescript
v1.0.3
Published
A few commands about Typescript。
Downloads
2
Readme
关于typescript的几个运行命令
[index=>index.ts]
- initial 安装配置typescript 命令
- tsc --init
- tscw 监视文档更新命令
- tsc -w 或 tsc --watch
- tsnode 运行ts命令
- ts-node index
- nodemon 自动运行命令
- nodemon index
package.json
"scripts":
{
"inist": "tsc --init",
"tscw": "tsc --watch",
"tsnode":"ts-node index",
"nodemon":"nodemon index"
}
Vscode
NPM 脚本
inist tsc --init
tscw tsc --watch
tsnode ts-node index
nodemon nodemon index
点击运行OK
如果你喜欢用 yarn
- yarn nodemon
- yarn tsnode