22 lines
458 B
JSON
22 lines
458 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Launch Program",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": ["run", "start:debug"],
|
|
"envFile": "${workspaceFolder}/.env",
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "attach",
|
|
"name": "UnitTest",
|
|
"port": 9229,
|
|
"envFile": "${workspaceFolder}/.env",
|
|
}
|
|
]
|
|
}
|