* update vite to 4.3.1

* re-export router-slot/model as types to avoid warning in vite

* add named type exports to avoid typescript + vite + esm funny business (warnings)

---------

Co-authored-by: Mads Rasmussen <madsr@hey.com>
This commit is contained in:
Jacob Overgaard
2023-04-21 14:13:41 +02:00
committed by GitHub
parent f5894e26c2
commit 9e72e5edd5
3 changed files with 60 additions and 44 deletions

View File

@@ -1,4 +1,14 @@
export * from 'router-slot/model';
export type {
IRoute,
PageComponent,
Guard,
IRoutingInfo,
IComponentRoute,
IRedirectRoute,
IResolverRoute,
Params,
Query,
} from 'router-slot/model';
export * from 'router-slot/util';
export * from './route-location.interface';
export * from './route.context';