具有文件夹层次结构,例如
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/*"]
所有子目录也都可以访问。
有没有办法做到这一点?