I’m not sure if modules can use the shortened syntax (if giving a default export) like Angular Lazy Load Components example I have here. I need to validate to confirm.

{
    path: 'some-path',
    loadChildren: () => import('./some.module').then((m) => m.SomeModule),
}