diff --git a/.vscode/launch.json b/.vscode/launch.json index 551ce40..eab3022 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,29 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "name": "Start Blocks Conversion Tool", + "type": "node", + "request": "launch", + "runtimeArgs": [ + "./src/server.js", + ], + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + }, + { + "name": "Run Tests", + "type": "node", + "request": "launch", + "runtimeArgs": [ + "--experimental-vm-modules", + "${workspaceRoot}/node_modules/jest/bin/jest.js", + "--watch", + "--watchAll" + ], + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + }, { "name": "Debug Jest Tests", "type": "node",