type config & remove await from memoryCache

This commit is contained in:
Michael C
2021-07-05 02:59:01 -04:00
parent 351c89f235
commit d29c9613b9
3 changed files with 4 additions and 4 deletions

View File

@@ -84,7 +84,6 @@ addDefaults(config, {
function addDefaults(config: SBSConfig, defaults: SBSConfig) {
for (const key in defaults) {
if (!Object.prototype.hasOwnProperty.call(config, key)) {
// @ts-ignore
config[key] = defaults[key];
}
}