diff options
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 22 | ||||
-rw-r--r-- | .vscode/tasks.json | 15 |
2 files changed, 8 insertions, 29 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 +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index fac4015..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - // See https://go.microsoft.com/fwlink/?LinkId=733558 - // for the documentation about the tasks.json format - "version": "2.0.0", - "tasks": [ - { - "type": "npm", - "script": "dev", - "group": { - "kind": "build", - "isDefault": true - } - } - ] -}
\ No newline at end of file |