Fixed launch.json

This commit is contained in:
Daniel
2020-03-08 15:22:07 +01:00
parent fb3cf9c315
commit 8c50d05776

11
.vscode/launch.json vendored
View File

@@ -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": ["<node_internals>/**"]
},
{
"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": ["<node_internals>/**"]
}