From 8b99313746d0273541d06f59db6473828793fa7f Mon Sep 17 00:00:00 2001 From: Pier-Paolo Mammi Date: Thu, 14 May 2026 09:43:26 +0200 Subject: [PATCH] add vscode launch file for debugging --- scripts/extract-elx/.vscode/launch.json | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 scripts/extract-elx/.vscode/launch.json diff --git a/scripts/extract-elx/.vscode/launch.json b/scripts/extract-elx/.vscode/launch.json new file mode 100644 index 0000000..ed63573 --- /dev/null +++ b/scripts/extract-elx/.vscode/launch.json @@ -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": [ + "/**" + ] + } + ], + "inputs": [ + { + "id": "scriptParameter", + "type": "promptString", + "description": "Enter parameter for JLX script", + "default": "" + } + ] +} \ No newline at end of file