core
core copied to clipboard
Fix unresolved types in `configure`
Attempting to use configure with backend options gives an error with the type.
You can get around it by casting to BackendConfiguration, like this:
await config({ '/data': <BackendConfiguration>{ backend: WebAccess, handle: dir, } }) Which should not be needed.