常見問題
Node.js TypeScript 常見問題
Categories:
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"],
}
}
這樣就可以正常編譯了