假设我有以下源结构.
/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更喜欢从索引文件导入?