From e911d664a4abc909ee64198a4388307e6be70cd0 Mon Sep 17 00:00:00 2001 From: Dirk Baeumer Date: Tue, 29 Nov 2016 12:37:44 +0100 Subject: [PATCH] Add launch config to debug gulp build file --- .vscode/launch.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 812630a07f5..1f767399434 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -19,6 +19,17 @@ "sourceMaps": true, "outFiles": [ "${workspaceRoot}/out/**/*.js" ] }, + { + "type": "node", + "request": "launch", + "name": "Gulp Build", + "program": "${workspaceRoot}/node_modules/gulp/bin/gulp.js", + "stopOnEntry": true, + "args": [ + "watch-extension:json-client" + ], + "cwd": "${workspaceRoot}" + }, { "type": "node", "request": "attach",