我克隆了一个角度为2的项目并安装了所有要求但是在运行ng serve
命令时我遇到了node_module错误:
node_modules/@types/systemjs/index.d.ts (333,13): Subsequent variable declarations must have the same type. Variable 'System' must be of type 'any', but here h as type 'System'.
在我的package.json
中,我有"@types/systemjs": "^0.19.32",
。它与兼容性有关吗?我该如何解决这样的错误?谢谢。
答案 0 :(得分:0)
查找 systemjs 的上次更新并通过npm安装,更改 package.json 中的版本,然后删除 node_modules 文件夹并输入sudo npm install
。