add extract-elx script from external repo

This commit is contained in:
2026-05-15 13:24:04 +02:00
parent fb06f7c5eb
commit 82fa329675
5 changed files with 0 additions and 0 deletions
+27
View File
@@ -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": ""
}
]
}