Skip to content

Commit 3909604

Browse files
committed
Fix options not making it indo configuring tasks
Fixes microsoft#81284
1 parent 863c25a commit 3909604

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/vs/workbench/contrib/tasks/common/taskConfiguration.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,8 @@ namespace ConfigurationProperties {
12391239

12401240
{ property: 'name' }, { property: 'identifier' }, { property: 'group' }, { property: 'isBackground' },
12411241
{ property: 'promptOnClose' }, { property: 'dependsOn' },
1242-
{ property: 'presentation', type: CommandConfiguration.PresentationOptions }, { property: 'problemMatchers' }
1242+
{ property: 'presentation', type: CommandConfiguration.PresentationOptions }, { property: 'problemMatchers' },
1243+
{ property: 'options' }
12431244
];
12441245

12451246
export function from(this: void, external: ConfigurationProperties & { [key: string]: any; }, context: ParseContext, includeCommandOptions: boolean, properties?: IJSONSchemaMap): Tasks.ConfigurationProperties | undefined {

0 commit comments

Comments
 (0)