Skip to content

Instantly share code, notes, and snippets.

@alisonailea
Last active March 18, 2020 18:52
Show Gist options
  • Save alisonailea/3e7c3acb49e443f693d784a5cdeb1798 to your computer and use it in GitHub Desktop.
Save alisonailea/3e7c3acb49e443f693d784a5cdeb1798 to your computer and use it in GitHub Desktop.
VSCode Debugger - Gulp
{
"configurations": [
{
"name": "Gulp Debugger",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/gulp/bin/gulp.js",
"stopOnEntry": false,
"args": ["-f", "${workspaceFolder}/${file}"],
"cwd": "${workspaceRoot}",
"runtimeArgs": [
"--nolazy"
]
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment