From 75267aa1a3ffd45c1f66f938b3049049b6d1aa40 Mon Sep 17 00:00:00 2001 From: MillenniumEarl Date: Thu, 11 Mar 2021 22:12:34 +0100 Subject: [PATCH] Ignore internal scripts in debug --- .vscode/launch.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 6031ce2..097529f 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,18 @@ "name": "Test", "request": "launch", "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/**/*", + "/**/*" + ] }, ] } \ No newline at end of file