}, {
path: 'staff',
resolve : {startup : BaseResolver},
- loadChildren: './staff/staff.module#StaffModule'
+ loadChildren: () => import('./staff/staff.module').then(m => m.StaffModule)
}
];
component: StandingPenaltyComponent
}, {
path: 'action/survey',
- loadChildren: '@eg/staff/admin/local/survey/survey.module#SurveyModule'
+ loadChildren: () =>
+ import('./survey/survey.module').then(m => m.SurveyModule)
}, {
path: ':schema/:table',
component: BasicAdminPageComponent
const routes: Routes = [{
path: '',
- children : [
- { path: 'workstation',
- loadChildren: '@eg/staff/admin/workstation/routing.module#AdminWsRoutingModule'
+ children : [{
+ path: 'workstation',
+ loadChildren: () =>
+ import('./workstation/routing.module').then(m => m.AdminWsRoutingModule)
}, {
path: 'server',
- loadChildren: '@eg/staff/admin/server/admin-server.module#AdminServerModule'
+ loadChildren: () =>
+ import('./server/admin-server.module').then(m => m.AdminServerModule)
}, {
path: 'local',
- loadChildren: '@eg/staff/admin/local/admin-local.module#AdminLocalModule'
+ loadChildren: () =>
+ import('./local/admin-local.module').then(m => m.AdminLocalModule)
}, {
path: 'acq',
- loadChildren: '@eg/staff/admin/acq/admin-acq.module#AdminAcqModule'
+ loadChildren: () =>
+ import('./acq/admin-acq.module').then(m => m.AdminAcqModule)
}, {
path: 'booking',
- loadChildren: '@eg/staff/admin/booking/admin-booking.module#AdminBookingModule'
+ loadChildren: () =>
+ import('./booking/admin-booking.module').then(m => m.AdminBookingModule)
}]
}];
component: OrgUnitTypeComponent
}, {
path: 'config/floating_group',
- loadChildren: '@eg/staff/admin/server/floating-group/floating-group.module#FloatingGroupModule'
+ loadChildren: () =>
+ import('./floating-group/floating-group.module').then(m => m.FloatingGroupModule)
}, {
path: 'config/print_template',
component: PrintTemplateComponent
component: PermGroupTreeComponent
}, {
path: 'actor/org_unit',
- loadChildren: '@eg/staff/admin/server/org-unit.module#OrgUnitModule'
+ loadChildren: () =>
+ import('./org-unit.module').then(m => m.OrgUnitModule)
}, {
path: 'actor/org_unit_proximity_adjustment',
component: BasicAdminPageComponent,
const routes: Routes = [{
path: 'workstations',
- loadChildren: '@eg/staff/admin/workstation/workstations/workstations.module#ManageWorkstationsModule'
+ loadChildren: () =>
+ import('./workstations/workstations.module').then(m => m.ManageWorkstationsModule)
}];
@NgModule({
const routes: Routes = [
{ path: 'vandelay',
- loadChildren: '@eg/staff/cat/vandelay/vandelay.module#VandelayModule'
+ loadChildren: () =>
+ import('./vandelay/vandelay.module').then(m => m.VandelayModule)
}, {
path: 'authority',
- loadChildren: '@eg/staff/cat/authority/authority.module#AuthorityModule'
+ loadChildren: () =>
+ import('./authority/authority.module').then(m => m.AuthorityModule)
}
];
const routes: Routes = [
{ path: 'bcsearch',
- loadChildren: '@eg/staff/circ/patron/bcsearch/bcsearch.module#BcSearchModule'
+ loadChildren: () =>
+ import('./bcsearch/bcsearch.module').then(m => m.BcSearchModule)
}
];
const routes: Routes = [
{ path: 'patron',
- loadChildren: '@eg/staff/circ/patron/routing.module#CircPatronRoutingModule'
+ loadChildren: () =>
+ import('./patron/routing.module').then(m => m.CircPatronRoutingModule)
}
];
pathMatch: 'full',
}, {
path: 'booking',
- loadChildren : '@eg/staff/booking/booking.module#BookingModule'
+ loadChildren: () =>
+ import('./booking/booking.module').then(m => m.BookingModule)
}, {
path: 'about',
component: AboutComponent
component: StaffSplashComponent
}, {
path: 'circ',
- loadChildren : '@eg/staff/circ/routing.module#CircRoutingModule'
+ loadChildren: () =>
+ import('./circ/routing.module').then(m => m.CircRoutingModule)
}, {
path: 'cat',
- loadChildren : '@eg/staff/cat/routing.module#CatRoutingModule'
+ loadChildren: () =>
+ import('./cat/routing.module').then(m => m.CatRoutingModule)
}, {
path: 'catalog',
- loadChildren : '@eg/staff/catalog/catalog.module#CatalogModule'
+ loadChildren: () =>
+ import('./catalog/catalog.module').then(m => m.CatalogModule)
}, {
path: 'sandbox',
- loadChildren : '@eg/staff/sandbox/sandbox.module#SandboxModule'
+ loadChildren: () =>
+ import('./sandbox/sandbox.module').then(m => m.SandboxModule)
}, {
path: 'admin',
- loadChildren : '@eg/staff/admin/routing.module#AdminRoutingModule'
+ loadChildren: () =>
+ import('./admin/routing.module').then(m => m.AdminRoutingModule)
}]
}];
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
- "module": "es6",
+ "module": "esnext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,