20 lines
382 B
JSON
20 lines
382 B
JSON
|
{
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Run application",
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"cwd": "${workspaceFolder}",
|
||
|
"console": "integratedTerminal",
|
||
|
"runtimeExecutable": "npm",
|
||
|
"runtimeArgs": [
|
||
|
"run-script",
|
||
|
"start"
|
||
|
],
|
||
|
"skipFiles": [
|
||
|
"<node_internals>/**"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|