From 8c50d057762b916c7e2ff889f8e73fc6bbaddd53 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 8 Mar 2020 15:22:07 +0100 Subject: [PATCH] Fixed launch.json --- .vscode/launch.json | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index bdca8db5..8ea4c533 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,16 +5,9 @@ "version": "0.2.0", "configurations": [ { - "name": "bookshop", "request": "launch", "type": "node", "runtimeExecutable": "npx", "runtimeArgs": [ "-n" ], - "args": [ "--", "cds", "run", "--in-memory" ], - "cwd": "${workspaceFolder}/packages/bookshop", - "console": "integratedTerminal", - "skipFiles": ["/**"] - }, - { - "name": "cds run ...", "request": "launch", "type": "node", "runtimeExecutable": "npx", "runtimeArgs": [ "-n" ], + "name": "cds run ...", "cwd": "${workspaceFolder}/${input:sample}", + "request": "launch", "type": "node", "runtimeExecutable": "npx", "runtimeArgs": [ "-n" ], "args": [ "--", "cds", "run", "--with-mocks", "--in-memory?" ], - "cwd": "${workspaceFolder}/${input:sample}", "console": "integratedTerminal", "skipFiles": ["/**"] }