赞
踩
ts-node可以直接运行ts代码
ts-node 需要在全局去安装。这里要用 npm 去全局安装,yarn 全局安装好像用不了 ts-node。
npm install -g typescript
npm install -g ts-node
这时使用ts-node命令运行文件报错:
解决:
安装一个依赖包
npm install -D tslib @types/node
再次运行就可以了
报错: 这时候可能写别的代码还是报错,比如我这里写的一个装饰器报下面的错误:
Experimental support for decorators is a feature that is subject to change in a future release. Set the'experimentalDecorators' option in your 'tsconfig' or 'jsconfig' to remove this warning.
解决:
直接创建个tsconfig.json:
//tsconfig.json
{
"compilerOptions": {
"experimentalDecorators": true
}
}
这样就可以了,网上看到说在vscode编辑器的setting配置上搜索experimentalDecorators
,勾选后配置后重启编辑器,我自己试了下没什么用;还是直接创建tsconfig.json,运行就可以了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。