Skip to content

Commit 06dedef

Browse files
committed
Removing stricter type for index accessor
Needs to be revisited
1 parent 0aaf00b commit 06dedef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/platform/configuration/common/configurationRegistry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ export function validateProperty(property: string): string | null {
471471
}
472472

473473
export function getScopes(): { [key: string]: ConfigurationScope } {
474-
const scopes: { [key: string]: ConfigurationScope } = {};
474+
const scopes = {};
475475
const configurationProperties = configurationRegistry.getConfigurationProperties();
476476
for (const key of Object.keys(configurationProperties)) {
477477
scopes[key] = configurationProperties[key].scope;

0 commit comments

Comments
 (0)