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