mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 11:46:38 +08:00

* fix launch configuration * update * additional dependencies * update * update * update * update * update
21 lines
506 B
JSON
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",
|
|
}
|
|
]
|
|
}
|