public setUserConfiguration(key: string, value: unknown, root?: URI): Promise<void> {
const configForRoot = this.configurationByRoot.get(root.fsPath) || Object.create(null);
configForRoot[key] = value;
this.configurationByRoot.set(root.fsPath, configForRoot);
this.configuration[key] = value;
}
return Promise.resolve(undefined);
}
private overrideIdentifiers: Map<string, string[]> = new Map();