reshuffle
Version:
Reshuffle is a fast, unopinionated, minimalist integration framework
47 lines • 1.49 kB
JSON
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch helloWorldHTTPExample",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/examples/hello-world-http/helloWorldHTTPExample.js"
},
{
"type": "node",
"request": "launch",
"name": "Launch helloWorldTimerExample",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/examples/hello-world-timer/helloWorldTimerExample.js"
},
{
"type": "node",
"request": "launch",
"name": "Launch helloWorldSQLExample",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/examples/hello-world-persistent/helloWorldSQLExample.js"
},
{
"type": "node",
"request": "launch",
"name": "Launch helloWorldAnyDBExample",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/examples/hello-world-persistent/helloWorldAnyDBExample.js"
},
{
"type": "node-terminal",
"name": "Create JavaScript Debug Terminal",
"request": "launch",
"cwd": "${workspaceFolder}"
}
]
}