赞
踩
【问题描述】
当使用TypeScript和process时,我的规范会失败,出现如下错误消息:
并且我已经在package.json文件中已经添加了@types/node
类库
解决办法:在tsconfig.json
中配置
// tsconfig.json
{
"compilerOptions": {
"types": []
}
}
改为
// tsconfig.json
{
"compilerOptions": {
// "types": []
}
}
或者改为:
// tsconfig.json
{
"compilerOptions": {
"types": ["node"]
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。