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"
}
}