Files
cloud-cap-samples/packages/reviews-service/.vscode/launch.json
2019-09-23 13:25:44 +02:00

17 lines
651 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",
"request": "launch",
"type": "node", "runtimeExecutable": "npx","runtimeArgs": [ "-n" ],
"args": [ "--","cds","run","--in-memory?" ], // the leading "--" arg ensures it works with as well as without debugging
"console": "integratedTerminal",
"skipFiles": [ "<node_internals>/**" ]
}
]
}