常见问题

Node.js TypeScript 常见问题

Cannot find name ‘Set’. Do you need to change your target library? Try changing the ’lib’ compiler option to ’es2015’ or later

安装 @types/node

npm install -D @types/node
yarn add @types/node

设定 tsconfig.json,在 compilerOptions / lib 加入 es6

{
  "compilerOptions": {
    "lib": ["es6"],
  }
}

这样就可以正常编译了