{
"version": "0.2.0",
"configurations": [
{
"type": "lc3",
"request": "launch",
"name": "LC-3 Debugger",
"program": "${workspaceFolder}/${command:AskForProgramName}"
},
{
"type": "cobol",
"request": "launch",
"name": "COBOL (native): Remote-SSH",
"program": "<insert-program-name-here>",
"env": {
"TERM": "xterm",
"DISPLAY": "<hostname-or-ip:D.S>"
},
"stopOnEntry": true,
"console": "externalTerminal"
},
{
"type": "cobol",
"request": "launch",
"name": "COBOL (native): remote",
"program": "<insert-program-name-here>",
"remoteDebug": {
"machine": "Please enter the name or IP address of the machine runing cobdebugremote.",
"port": 0
},
"stopOnEntry": true
},
{
"type": "cobol",
"request": "launch",
"name": "COBOL (native)",
"program": "${workspaceFolder}/<insert-program-name-here>",
"cwd": "${workspaceFolder}",
"stopOnEntry": true
},
{
"request": "launch",
"name": "Launch Program",
"type": "node",
"program": "${workspaceFolder}/main.ts",
"cwd": "${workspaceFolder}",
"env": {},
"runtimeExecutable": "deno",
"runtimeArgs": [
"run",
"--unstable",
"--inspect-brk",
"--allow-all"
],
"attachSimplePort": 9229
}
]
}