我照着这篇文章搭建一个 TypeScript NPM 包,当第一次执行 npm run build
时,能正常运行,当下载完 jest
之后再次运行 npm run build
报如下错:
tsc node_modules/@types/babel__template/index.d.ts:16:28 — error TS2583: Cannot find name ‘Set’. Do you need to change your target library? Try changing the lib compiler option to es2015 or later.
16 placeholderWhitelist?: Set;
Found 1 error.
我的 node, npm, tsc 的版本分别是: node -v // v8.12.0, npm -v // v6.4.1, tsc -v // v3.4.5
项目代码:https://github.com/irenetang1...
为什么我在 tsconfig.json
中已经 exclude node_modules了,tsc 还是执行到 node_modules 里面去了?
参考:https://juejin.im/post/5d2fd5...