diff options
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 995ecf7..e70178d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,26 +2,20 @@ "version": "0.2.0", "configurations": [ { + "type": "node", + "request": "attach", + "name": "Attach to Node", + "processId": "${command:PickProcess}" + }, + { "type": "chrome", "request": "launch", - "name": "Client", + "name": "Google Chrome", "url": "http://localhost:3000", "webRoot": "${workspaceRoot}", "sourceMapPathOverrides": { "webpack:///*": "${webRoot}/*" } - }, - { - "type": "node", - "request": "launch", - "name": "Server", - "program": "${workspaceRoot}/src/server/bin/www" } ], - "compounds": [ - { - "name": "Full-stack", - "configurations": ["Server", "Client"] - } - ] -}
\ No newline at end of file +} |