*/
export function getLocationsValue(configService: IConfigurationService, type: PromptsType): Record<string, boolean> | undefined {
const configValue = configService.getValue(key);
if (configValue === undefined || configValue === null || Array.isArray(configValue)) {
return undefined;
}