From 695efff49296724dee905331343bc487fd379e4c Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 11 May 2021 19:33:35 +0000 Subject: [PATCH] Add a configuration for debugging the `Watch` task --- .vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index a515724..c001733 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,24 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "args": [ + "Watch" + ], + "name": "Execute Watch Task", + "program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js", + "request": "launch", + "skipFiles": [ + "/**" + ], + "type": "pwa-node", + "sourceMaps": true, + "outFiles": [ + "${workspaceFolder}/gulpfile.ts", + "${workspaceFolder}/gulp/**/*.ts", + "!**/node_modules/**" + ] + }, { "type": "chrome", "request": "launch",