Skip to content

Commit

Permalink
debug: preLaucnhTask default value is null
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Feb 26, 2016
1 parent dbf260b commit e062f38
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vs/workbench/parts/debug/node/debugAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ export class Adapter {
description: nls.localize('debugRequest', "Request type of configuration. Can be \"launch\" or \"attach\"."),
};
properties.preLaunchTask = {
type: 'string',
type: ['string', 'null'],
default: null,
description: nls.localize('debugPrelaunchTask', "Task to run before debug session starts.")
};
this.warnRelativePaths(properties.outDir);
Expand Down

0 comments on commit e062f38

Please sign in to comment.