ng serve命令生成错误重复标识符'export ='

时间:2019-10-03 09:47:21

标签: angular typescript angular7

每当我执行ng serve或npm start时,都会出现以下错误:错误TS2300:标识符'export ='重复。 在两个文件中。

第一个: module.d.ts

declare module "module" {
    export = NodeJS.Module;
}

第二个: index.d.ts

declare module 'module' {
    var mod: {
        config: () => any;
        id: string;
        uri: string;
    }
    export = mod;
}
  • 1:我更改了名称将不起作用。
  • 2:删除节点模块并执行npm install也不起作用。
  • 3:有些排除术语也行不通。

请提供一些解决方案。 check image for more clarification

0 个答案:

没有答案