From 6505977f53152d878ff583f68319850eefe25338 Mon Sep 17 00:00:00 2001 From: Alex Ross Date: Wed, 10 Jul 2019 17:07:55 +0200 Subject: [PATCH] Implicity any in taskConfiguration.ts Part of #76442 --- src/vs/workbench/contrib/tasks/common/taskConfiguration.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/tasks/common/taskConfiguration.ts b/src/vs/workbench/contrib/tasks/common/taskConfiguration.ts index 515edd44738..528b95b0134 100644 --- a/src/vs/workbench/contrib/tasks/common/taskConfiguration.ts +++ b/src/vs/workbench/contrib/tasks/common/taskConfiguration.ts @@ -1242,11 +1242,11 @@ namespace ConfigurationProperties { { property: 'presentation', type: CommandConfiguration.PresentationOptions }, { property: 'problemMatchers' } ]; - export function from(this: void, external: ConfigurationProperties, context: ParseContext, includeCommandOptions: boolean, properties?: IJSONSchemaMap): Tasks.ConfigurationProperties | undefined { + export function from(this: void, external: ConfigurationProperties & { [key: string]: any; }, context: ParseContext, includeCommandOptions: boolean, properties?: IJSONSchemaMap): Tasks.ConfigurationProperties | undefined { if (!external) { return undefined; } - let result: Tasks.ConfigurationProperties = {}; + let result: Tasks.ConfigurationProperties & { [key: string]: any; } = {}; if (properties) { for (const propertyName of Object.keys(properties)) { -- GitLab