使用已安装驱动器上的代码复制标识符/重复字符串索引签名

时间:2017-01-16 10:50:59

标签: typescript visual-studio-2015 typescript2.0 tsconfig

我的打字稿项目位于c:\ data中。 c:\ data映射到f:通过已安装的驱动器:

mounted drive

我使用Visual Studio 2015,Typescript Tools 2.0.5和npm Typescript@2.1.5

视觉工作室中的 Typescript以某种方式选择指向相同d.ts类型文件的两条/两条路径,例如C:\ DATA \ xpsdev \干线\网络\ workforce.mv​​c \ node_modules \ @types \ jQuery的\ index.d.ts 和 F:\ xpsdev \树干\网络\ workforce.mv​​c \ node_modules \ @types \ jquery的\ index.d.ts

导致错误列表中出现重复的标识符/签名错误。

error list

file ref 1 file ref 2

如何避免Visual Studio不考虑两个路径?

排除" f:\ xpsdev"在tsconfig中没有工作......

1 个答案:

答案 0 :(得分:0)

解决方案是添加

{ compileroptions : {"watch": true } }

我收到一个新错误"当前主机不支持--watch选项"因为tsc.exe不支持像node.js那样观看

cfr https://github.com/Microsoft/TypeScript/issues/2375

但我可以忽略这一点。