vscode-“实现接口”->禁用内联导入

时间:2019-11-16 19:01:44

标签: typescript visual-studio-code

在打字稿中,如果我使用“实现接口”对类名进行自动修复,它将创建带有内联导入的方法:

  getInbox(): Observable<import('../../model/Message').Interactions[]> {
    throw new Error('Method not implemented.');
  }

您会看到 import('../../ model / Message'丑陋而愚蠢。如何使它导入文件顶部而不是内联? / p>

1 个答案:

答案 0 :(得分:1)