打字稿,“进程”不存在

时间:2019-06-27 23:46:58

标签: node.js

我安装了npm i @types/node,但进程仍未注册为现有进程。要为节点定义类型,我还需要做什么?

1 个答案:

答案 0 :(得分:1)

您不仅必须安装节点的类型(即npm i @types/node),而且还必须在tsconfig.json中的“类型”下列出“节点”

// example tsconfig.json
{
  "compilerOptions": {
    "module": "CommonJS",
    "target": "ES2018",
    "baseUrl": ".",
    "importHelpers": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "types": ["node"]
  }
}