Add a configuration for debugging the Watch
task
This commit is contained in:
parent
992cd447ba
commit
695efff492
18
.vscode/launch.json
vendored
18
.vscode/launch.json
vendored
|
@ -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": [
|
||||
"<node_internals>/**"
|
||||
],
|
||||
"type": "pwa-node",
|
||||
"sourceMaps": true,
|
||||
"outFiles": [
|
||||
"${workspaceFolder}/gulpfile.ts",
|
||||
"${workspaceFolder}/gulp/**/*.ts",
|
||||
"!**/node_modules/**"
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "chrome",
|
||||
"request": "launch",
|
||||
|
|
Loading…
Reference in a new issue