Ignore internal scripts in debug
parent
71505cc653
commit
75267aa1a3
|
@ -5,7 +5,18 @@
|
||||||
"name": "Test",
|
"name": "Test",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"command": "npm run test",
|
"command": "npm run test",
|
||||||
"cwd": "${workspaceFolder}"
|
"cwd": "${workspaceFolder}",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node-terminal",
|
||||||
|
"name": "Example",
|
||||||
|
"request": "launch",
|
||||||
|
"command": "npm run run-example",
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"skipFiles": [
|
||||||
|
"${workspaceFolder}/node_modules/**/*",
|
||||||
|
"<node_internals>/**/*"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
Loading…
Reference in New Issue