Ignore internal scripts in debug

pull/81/head
MillenniumEarl 2021-03-11 22:12:34 +01:00
parent 71505cc653
commit 75267aa1a3
1 changed files with 12 additions and 1 deletions

13
.vscode/launch.json vendored
View File

@ -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>/**/*"
]
}, },
] ]
} }