From cc424b02d05a26b92095057c856b4cbb72d33e7b Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 7 Dec 2016 10:34:14 +0100 Subject: [PATCH] Provide a template for launch.json root content fixes #16708 --- src/vs/workbench/parts/debug/node/debugConfigurationManager.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/parts/debug/node/debugConfigurationManager.ts b/src/vs/workbench/parts/debug/node/debugConfigurationManager.ts index f97f962a98f..32866d6005e 100644 --- a/src/vs/workbench/parts/debug/node/debugConfigurationManager.ts +++ b/src/vs/workbench/parts/debug/node/debugConfigurationManager.ts @@ -137,6 +137,7 @@ const schema: IJSONSchema = { type: 'object', title: nls.localize('app.launch.json.title', "Launch"), required: ['version', 'configurations'], + default: { version: '0.2.0', configurations: [], compounds: [] }, properties: { version: { type: 'string', -- GitLab