2016-10-02 6 views
0

手順:
1)npm install @types/mocha @types/jasmine
2)tscモカのための活字体2つの定義、ジャスミンの原因重複識別子再現する

node_modules/@types/jasmine/index.d.ts(9,18): error TS2300: Duplicate identifier 'describe'. 
node_modules/@types/jasmine/index.d.ts(11,18): error TS2300: Duplicate identifier 'xdescribe'. 
... 
node_modules/@types/mocha/index.d.ts(33,13): error TS2300: Duplicate identifier 'describe'. 
node_modules/@types/mocha/index.d.ts(34,13): error TS2300: Duplicate identifier 'xdescribe'. 
... 

マイプロジェクト構造:

node_modules 
test.ts 
tsconfig.json 

マイコード:

const a: number = 9; 

My tsconfig.json:

{ 
    "compilerOptions": { 
    "target": "es5", 
    "module": "commonjs", 
    "moduleResolution": "node" 
    } 
} 

答えて

4

これが見つかりました。 tsconfig.jsontypesオプションを使用し、tscバージョン2.x

関連する問題