当前位置:   article > 正文

Cannot find name ‘process‘. Do you need to install type definitions for node?_cannot find name 'process'. do you need to install

cannot find name 'process'. do you need to install type definitions for node

【问题描述】
当使用TypeScript和process时,我的规范会失败,出现如下错误消息:
在这里插入图片描述

并且我已经在package.json文件中已经添加了@types/node类库
111

解决办法:在tsconfig.json中配置

// tsconfig.json
{
  "compilerOptions": {
    "types": []
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

改为

// tsconfig.json
{
  "compilerOptions": {
    // "types": []
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

或者改为:

// tsconfig.json
{
  "compilerOptions": {
    "types": ["node"]
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/360117
推荐阅读
相关标签
  

闽ICP备14008679号