Skip to content

Commit 61f3f3b

Browse files
Add vscode debug example (#6)
1 parent c52c2d4 commit 61f3f3b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

docs/launch.example.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "launch",
7+
"name": "Launch Program",
8+
"skipFiles": ["<node_internals>/**"],
9+
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
10+
"args": [
11+
"--timeout",
12+
"10000",
13+
"--colors",
14+
"${workspaceFolder}/dist/tests/**/*.js"
15+
],
16+
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)