diff options
author | Noah Loomans <noahloomans@gmail.com> | 2018-04-15 16:49:52 +0200 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2018-04-15 16:49:52 +0200 |
commit | 4ccd16db1c53bc7ef58273d6cc30ae5b8d2b6b2b (patch) | |
tree | d24f02d13a2255c224022af640acb1e7991389ff | |
parent | 4acd83630f04c0982d9b455206b67b4ebeaac2da (diff) |
Add Attach to Node vscode debug script
-rw-r--r-- | .vscode/launch.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index e9718ce..e70178d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,6 +2,12 @@ "version": "0.2.0", "configurations": [ { + "type": "node", + "request": "attach", + "name": "Attach to Node", + "processId": "${command:PickProcess}" + }, + { "type": "chrome", "request": "launch", "name": "Google Chrome", |