abapGit/.vscode/launch.json
Lars Hvam 3781309b4b
debugger breakpoint, fix launch configuration (#5843)
* fix launch configuration

* update

* additional dependencies

* update

* update

* update

* update

* update
2022-10-31 13:23:31 -04:00

21 lines
506 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "All Unit Tests",
"type": "node",
"request": "launch",
"pauseForSourceMap": true,
"trace": false,
"skipFiles": [
"<node_internals>/**",
"${workspaceFolder}/output/cl_*",
"${workspaceFolder}/output/index.mjs",
"${workspaceFolder}/node_modules/@abaplint/runtime/**"
],
"preLaunchTask": "npm: build",
"program": "${workspaceFolder}/output/index.mjs",
}
]
}