0
Angular2 - doppelte Bezeichner FehlerAngular2 Beta 17 - Doppelte Kennung Fehler
M:/workspace/Angular2StartKit/node_modules/angular2/typings/browser.d.ts(6,14): error TS2300: Duplicate identifier 'PromiseConstructor'.
M:/workspace/Angular2StartKit/node_modules/angular2/typings/es6-collections/es6-collections.d. ts(22,5): error TS2300: Duplicate identifier 'done'.
M:/workspace/Angular2StartKit/node_modules/angular2/typings/es6-collections/es6-collections.d. ts(23,5): error TS2300: Duplicate identifier 'value'.
M:/workspace/Angular2StartKit/node_modules/angular2/typings/es6-collections/es6-collections.d. ts(46,5): error TS2300: Duplicate identifier 'size'.
M:/workspace/Angular2StartKit/node_modules/angular2/typings/es6-collections/es6-collections.d. ts(52,5): error TS2300: Duplicate identifier 'prototype'.
M:/workspace/Angular2StartKit/node_modules/angular2/typings/es6-collections/es6-collections.d. ts(66,5): error TS2300: Duplicate identifier 'size'.
M:/workspace/Angular2StartKit/node_modules/angular2/typings/es6-collections/es6-collections.d. ts(72,5): error TS2300: Duplicate identifier 'prototype'.
M:/workspace/Angular2StartKit/node_modules/angular2/typings/es6-collections/es6-collections.d. ts(88,5): error TS2300: Duplicate identifier 'prototype'.
M:/workspace/Angular2StartKit/node_modules/angular2/typings/es6-collections/es6-collections.d. ts(103,5): error TS2300: Duplicate identifier 'prototype'.
M:/workspace/Angular2StartKit/node_modules/angular2/typings/es6-promise/es6-promise.d.ts(11,15): error TS2300: Duplicate identifier 'Promise'.
M:/workspace/Angular2StartKit/node_modules/angular2/typings/es6-promise/es6-promise.d.ts(42,16): error TS2300: Duplicate identifier 'Promise'.
__lib.d.ts(565,5): error TS2300: Duplicate identifier 'done'.
__lib.d.ts(566,5): error TS2300: Duplicate identifier 'value'.
__lib.d.ts(823,5): error TS2300: Duplicate identifier 'size'.
__lib.d.ts(833,5): error TS2300: Duplicate identifier 'prototype'.
__lib.d.ts(849,5): error TS2300: Duplicate identifier 'prototype'.
__lib.d.ts(861,5): error TS2300: Duplicate identifier 'size'.
__lib.d.ts(871,5): error TS2300: Duplicate identifier 'prototype'.
__lib.d.ts(886,5): error TS2300: Duplicate identifier 'prototype'.
__lib.d.ts(1257,11): error TS2300: Duplicate identifier 'Promise'.
__lib.d.ts(1278,11): error TS2300: Duplicate identifier 'PromiseConstructor'.
__lib.d.ts(1347,13): error TS2300: Duplicate identifier 'Promise'.
Ich habe die es6 Dateien exculded, die die Compiler über beschwert, aber ich bin nicht sicher, ob es sicher als Compiler ausgeschlossen wird immer noch beschwert
{
"compilerOptions": {
"target": "ES6",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"exclude": [
"node_modules",
"typings/es6-promise/es6-promise.d.ts",
"typings/es6-collections/es6-collections.d.ts",
"dist"
]
}
ich habe auch die followin die bootstarp.js Datei nach somereaserch Online
///<reference path="../../node_modules/angular2/typings/browser.d.ts"/>
tun 10
Irgendeine Idee, was ist hier falsch?
Wahrscheinlich hilfreich folgenden hinzufügen, http://stackoverflow.com/questions/31322525/typescript-confusing-duplicate-identifier -errornachricht – codef0rmer
Ich löschte die widersprüchlichen Dateien, damit es funktioniert .. nicht der richtige Ansatz, sondern musste voran gehen. – user2180794