Aurelia框架中的Typescript 1.8版本

Aurelia框架中的Typescript 1.8版本,typescript,visual-studio-2015,aurelia,typescript1.8,Typescript,Visual Studio 2015,Aurelia,Typescript1.8,我使用的是Aurelia框架。昨晚我把typescript从1.7版本升级到了1.8版本 现在我在VisualStudio的“错误列表”选项卡中遇到了很多错误 错误如下: node_modules/typescript/bin/lib.core.d.ts(83,5): error TS2300: Duplicate identifier 'configurable'. node_modules/typescript/bin/lib.core.d.ts(84,5): error TS2300: D

我使用的是Aurelia框架。昨晚我把typescript从1.7版本升级到了1.8版本

现在我在VisualStudio的“错误列表”选项卡中遇到了很多错误

错误如下:

node_modules/typescript/bin/lib.core.d.ts(83,5): error TS2300: Duplicate identifier 'configurable'.
node_modules/typescript/bin/lib.core.d.ts(84,5): error TS2300: Duplicate identifier 'enumerable'.
node_modules/typescript/bin/lib.core.d.ts(85,5): error TS2300: Duplicate identifier 'value'.
node_modules/typescript/bin/lib.core.d.ts(86,5): error TS2300: Duplicate identifier 'writable'.
大约有20k个错误

我添加了代码以排除tsconfig.json中的文件夹,但visual studio并没有忽略这些文件夹

下面是jspm_packages文件夹和npm文件夹的快照。

欢迎提出任何建议


提前感谢。

@kabaehr buddy所有软件包都是最新的。该错误表示您有双类型脚本定义文件。检查您是否在
jspm\u packages
下有多个版本的软件包,例如aurelia binding。如果是,请删除整个文件夹,并使用
jspm install
@kabaehr重新安装软件包,我已尝试过,但不起作用:(你能展示你的jspm_软件包的截图吗?@kabaehr我已经添加了jspm_软件包和npm的快照。请看一下,告诉我你的评论。