Fix type error

This commit is contained in:
Jesse Wierzbinski 2024-03-13 07:36:43 -10:00
parent 501b8bf78a
commit e227522c55
No known key found for this signature in database

View file

@ -26,7 +26,7 @@ export class ConfigManager {
const config = await this.readConfig<T>(); const config = await this.readConfig<T>();
const internalConfig = await this.readInternalConfig<T>(); const internalConfig = await this.readInternalConfig<T>();
return this.mergeConfigs<T>(configDefaults, config, internalConfig); return this.mergeConfigs<T>(configDefaults as T, config, internalConfig);
} }
getConfigPath() { getConfigPath() {