lbry-wunderbot/.vscode/launch.json
2018-05-19 23:35:45 +02:00

34 lines
No EOL
1.1 KiB
JSON

{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/node_modules/nodemon/bin/nodemon.js",
"cwd": "${workspaceRoot}",
"stopOnEntry": false,
"args": [
"${workspaceRoot}/src/index.js"
],
"runtimeArgs": [
"--nolazy"
],
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/babel-node",
"protocol": "inspector"
},
{
"type": "node",
"request": "attach",
"name": "Attach to Process",
"port": 41000,
"address": "localhost",
"restart": false,
"localRoot": "${workspaceRoot}",
"protocol": "inspector"
}
]
}