1
0
mirror of synced 2025-12-19 09:57:42 -05:00

Add VS Code debugger config (#16819)

* add config for using vscode debugger

reference: https://github.com/Microsoft/vscode-recipes/tree/master/nodemon

* some docs

Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com>
This commit is contained in:
Vanessa Yuen
2020-12-10 19:37:06 +01:00
committed by GitHub
parent c0663d4977
commit f44d5aa648
3 changed files with 26 additions and 0 deletions

13
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Node: Nodemon",
"processId": "${command:PickProcess}",
"restart": true,
"protocol": "inspector",
},
]
}