@ type / node error:SystemJS上带有systemjs-builder的Angular 4

时间:2017-05-26 07:48:17

标签: angular typescript gulp systemjs-builder

更新:无需修复

即可再次使用

我看https://www.npmjs.com/package/@types/node,他们已经更新,我的项目失败了。

7天前,这是Travis的工作和构建测试

https://travis-ci.org/AngularVN/angular4-seed/jobs/235774520 enter image description here

现在,它有一个重大问题,帮助我 enter image description here

我再试一次我的笔记本电脑,它失败了。也许这是打字稿编译器的问题。

我认为这是依赖关系的问题,有人被更新并且崩溃了一切

-128

1 个答案:

答案 0 :(得分:1)

这是@types包的问题。对我来说,@ types / node与@ types / core-js冲突。

我怀疑你的package.json文件中有这样的东西

"@types/node": "^6.0.58", "@types/core-js": "^0.9.35",

尝试将其更改为特定版本,例如,这些是当前为我工作的版本

"@types/node": "6.0.58", "@types/core-js": "0.9.35",