21 lines
419 B
JSON
21 lines
419 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "Attach",
|
|
"port": 9229,
|
|
"skipFiles": ["<node_internals>/**"]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Execute Command",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"program": "${workspaceFolder}/bin/dev",
|
|
"args": ["hello", "world"]
|
|
}
|
|
]
|
|
}
|