2020-10-01 19:13:23 +00:00
|
|
|
{
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"type": "node-terminal",
|
2021-02-16 09:41:41 +00:00
|
|
|
"name": "Test",
|
2020-10-01 19:13:23 +00:00
|
|
|
"request": "launch",
|
|
|
|
"command": "npm run test",
|
2021-03-11 21:12:34 +00:00
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "node-terminal",
|
|
|
|
"name": "Example",
|
|
|
|
"request": "launch",
|
|
|
|
"command": "npm run run-example",
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"skipFiles": [
|
|
|
|
"${workspaceFolder}/node_modules/**/*",
|
|
|
|
"<node_internals>/**/*"
|
|
|
|
]
|
2021-02-16 09:41:41 +00:00
|
|
|
},
|
2020-10-01 19:13:23 +00:00
|
|
|
]
|
|
|
|
}
|