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