Skip to content

Commit 27e7159

Browse files
committed
tweaks
1 parent ebbfdd4 commit 27e7159

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.vscode/launch.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1+
// For configurations:
2+
// https://code.visualstudio.com/Docs/editor/debugging
13
{
24
"version": "0.2.0",
35
"configurations": [
46
{
57
"name": "Run the current Mocha test file",
68
"type": "node",
79
"request": "launch",
8-
"runtimeArgs": [
9-
],
10+
"internalConsoleOptions": "openOnSessionStart",
11+
"runtimeArgs": [],
1012
"args": [
1113
"--colors",
1214
"${relativeFile}"
1315
],
14-
"internalConsoleOptions": "openOnSessionStart",
1516
"program": "${workspaceFolder}/node_modules/.bin/mocha",
1617
"sourceMaps": true,
1718
"cwd": "${workspaceRoot}"
@@ -20,6 +21,7 @@
2021
"name": "Run the current TypeScript file",
2122
"type": "node",
2223
"request": "launch",
24+
"internalConsoleOptions": "openOnSessionStart",
2325
"args": [
2426
"${relativeFile}"
2527
],

0 commit comments

Comments
 (0)