Skip to content

Commit 449789b

Browse files
committed
chore: Add VSC launch configuration
1 parent e38c721 commit 449789b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.vscode/launch.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "launch",
7+
"name": "Start testing",
8+
"program": "${workspaceFolder}/node_modules/.bin/mocha",
9+
"args": [
10+
"${file}",
11+
"--watch"
12+
],
13+
"console": "integratedTerminal"
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)