使用tsconfig路径仅映射第一级目录

时间:2019-04-08 09:41:01

标签: angular typescript

具有文件夹层次结构,例如

app 
  entity
    entity.module.ts
    components
      entity
        entity.component.ts
  table
    table.module.ts
    components
      ...

我只想映射到路径快捷方式@module

app/entity/entity.module.ts
app/table/table.module.ts

但是,使用时

"@module/*": ["app/entity/*", "app/table/*"]

所有子目录也都可以访问。
有没有办法做到这一点?

0 个答案:

没有答案