add vscode launch file for debugging
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "Launch extract-elx (clean) with input",
|
||||||
|
"program": "${workspaceFolder}/extract-elx.js",
|
||||||
|
"args": [
|
||||||
|
"${input:scriptParameter}",
|
||||||
|
"--clean"
|
||||||
|
],
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
"skipFiles": [
|
||||||
|
"<node_internals>/**"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"inputs": [
|
||||||
|
{
|
||||||
|
"id": "scriptParameter",
|
||||||
|
"type": "promptString",
|
||||||
|
"description": "Enter parameter for JLX script",
|
||||||
|
"default": ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user