more lint fixes

This commit is contained in:
Boki 2025-06-20 08:54:56 -04:00
parent cc014de397
commit 3e545cdaa9
8 changed files with 29 additions and 38 deletions

View file

@ -59,7 +59,7 @@ export class ConfigManager<T = Record<string, unknown>> {
// Add environment if not present
if (typeof mergedConfig === 'object' && mergedConfig !== null && !('environment' in mergedConfig)) {
(mergedConfig as any).environment = this.environment;
(mergedConfig as Record<string, unknown>)['environment'] = this.environment;
}
// Validate if schema provided