微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – 使用SystemJS模块系统时从索引文件导入的WebStorm

假设我有以下源结构.
/home
  home.component.ts
/shared
  /domain
    car.domain.ts
    house.domain.ts
    person.domain.ts
    index.ts

所有域文件都包含类似的内容

export interface Car {
  someProperty: number;
}

索引文件如下所示

export * from './car.domain';
export * from './house.domain';
export * from './person.domain';

然后在我的家庭组件中完美地导入这样的导入.

import { Car,Person } from '../shared/domain';

要么

import { Car,Person } from '../shared/domain/index';

但是当自动导入WebStorm坚持导入这样的接口时

import { Car } from '../shared/domain/car.domain';
import { Person } from '../shared/domain/person.domain';

有没有办法让WebStorm更喜欢从索引文件导入?

解决方法

你需要打开文件|设置|编辑|一般|自动导入设置并启用[使用目录导入]选项

注意:需要WebStorm 2016.3或更高版本

原文地址:https://www.jb51.cc/js/157805.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐