62
const configurationDefaultsOverrides = this.getConfigurationDefaultOverrides();
63
for (const key of properties) {
64
>
const defaultOverrideValue = configurationDefaultsOverrides[key];
configurations.ts
65
>
const propertySchema = configurationProperties[key];
66
>
if (defaultOverrideValue !== undefined) {
67
this._configurationModel.setValue(key, defaultOverrideValue);
69
>
this._configurationModel.setValue(key, this.getDefaultValue(key, propertySchema));
70
>
} else {
71
this._configurationModel.removeValue(key);
72
}
74
}
75
76
protected getDefaultValue(_key: string, propertySchema: IRegisteredConfigurationPropertySchema): unknown {
78
>
}
79
80
}