22 lines
578 B
JSON
22 lines
578 B
JSON
{
|
|
"configurations": [
|
|
{
|
|
"type": "node-terminal",
|
|
"name": "Test",
|
|
"request": "launch",
|
|
"command": "npm run test",
|
|
"cwd": "${workspaceFolder}",
|
|
},
|
|
{
|
|
"type": "node-terminal",
|
|
"name": "Example",
|
|
"request": "launch",
|
|
"command": "npm run run-example",
|
|
"cwd": "${workspaceFolder}",
|
|
"skipFiles": [
|
|
"${workspaceFolder}/node_modules/**/*",
|
|
"<node_internals>/**/*"
|
|
]
|
|
},
|
|
]
|
|
} |