aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2018-03-24 15:58:29 +0100
committerNoah Loomans <noahloomans@gmail.com>2018-03-24 15:58:29 +0100
commit66f2d8d77cf37c4f8971f7ca7a77e7610096383f (patch)
tree1a47abeadfa258a6626398ed1da458384beb1704
parent3750002dc287765f6d8fb8abcfe1b119436e9694 (diff)
Remove unused tasks and launch scripts
-rw-r--r--.vscode/launch.json16
-rw-r--r--.vscode/tasks.json15
2 files changed, 2 insertions, 29 deletions
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