From 66f2d8d77cf37c4f8971f7ca7a77e7610096383f Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Sat, 24 Mar 2018 15:58:29 +0100 Subject: Remove unused tasks and launch scripts --- .vscode/launch.json | 16 ++-------------- .vscode/tasks.json | 15 --------------- 2 files changed, 2 insertions(+), 29 deletions(-) delete mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json index 995ecf7..e9718ce 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,24 +4,12 @@ { "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 -- cgit v1.1