Adjusted launch cinfigs for vscode

This commit is contained in:
Daniel
2020-03-08 14:01:47 +01:00
parent 48fa640f5b
commit d8d3b57929

13
.vscode/launch.json vendored
View File

@@ -14,7 +14,7 @@
{
"name": "cds run ...", "request": "launch", "type": "node", "runtimeExecutable": "npx", "runtimeArgs": [ "-n" ],
"args": [ "--", "cds", "run", "--with-mocks", "--in-memory?" ],
"cwd": "${workspaceFolder}/packages/${input:service}",
"cwd": "${workspaceFolder}/${input:sample}",
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**"]
}
@@ -22,14 +22,13 @@
"inputs": [
{
"type": "pickString",
"id": "service",
"description": "Which service do you want to start?",
"id": "sample",
"description": "Which sample do you want to start?",
"options": [
"bookshop",
"bookstore",
"media-server",
"office-supplies",
"reviews-service"
"fiori",
"reviews",
"reviews/test/bookshop"
],
"default": "bookshop"
}