提交 6505977f 编写于 作者: A Alex Ross

Implicity any in taskConfiguration.ts

Part of #76442
上级 03e13189
...@@ -1242,11 +1242,11 @@ namespace ConfigurationProperties { ...@@ -1242,11 +1242,11 @@ namespace ConfigurationProperties {
{ property: 'presentation', type: CommandConfiguration.PresentationOptions }, { property: 'problemMatchers' } { 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) { if (!external) {
return undefined; return undefined;
} }
let result: Tasks.ConfigurationProperties = {}; let result: Tasks.ConfigurationProperties & { [key: string]: any; } = {};
if (properties) { if (properties) {
for (const propertyName of Object.keys(properties)) { for (const propertyName of Object.keys(properties)) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册