Files
cloud-cap-samples/.vscode/launch.json
2020-03-08 15:22:07 +01:00

30 lines
865 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "cds run ...", "cwd": "${workspaceFolder}/${input:sample}",
"request": "launch", "type": "node", "runtimeExecutable": "npx", "runtimeArgs": [ "-n" ],
"args": [ "--", "cds", "run", "--with-mocks", "--in-memory?" ],
"console": "integratedTerminal",
"skipFiles": ["<node_internals>/**"]
}
],
"inputs": [
{
"type": "pickString",
"id": "sample",
"description": "Which sample do you want to start?",
"options": [
"bookshop",
"fiori",
"reviews",
"reviews/test/bookshop"
],
"default": "bookshop"
}
]
}