2016-03-17 61 views
2

我在使用2.0.0-beta.0工作的visual studio中有一個Angular2項目。我已升級到2.0.0-beta.9,並且出現構建錯誤。Angular2 2.0.0-beta.9給出構建錯誤

第一個錯誤是:

找不到名稱 'SetConstructor'。

也在「TypeScript虛擬項目」項目中。

的文件是:

MyProject的\ node_modules \ angular2的\ src \門面\ collection.d.ts

爲我所用從快速入門的的package.json這裏測試: https://angular.io/guide/quickstart

任何想法?

回答

3

你需要一些環境分型在tsconfig.json

"files": [ 
    "typings/browser/ambient/es6-promise/es6-promise.d.ts", 
    "typings/browser/ambient/es6-collections/es6-collections.d.ts" 
], 

在命令行(在項目根級)做:

typings install --save --ambient es6-promise es6-collections 

// If you don't have typings installed do: 
// npm install -g typings 
相關問題