We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e60125 commit c7460eaCopy full SHA for c7460ea
.vscode/launch.json
@@ -0,0 +1,35 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Run the current Mocha test file",
6
+ "type": "node",
7
+ "request": "launch",
8
+ "runtimeArgs": [
9
+ ],
10
+ "args": [
11
+ "--colors",
12
+ "${relativeFile}"
13
14
+ "internalConsoleOptions": "openOnSessionStart",
15
+ "program": "${workspaceFolder}/node_modules/.bin/mocha",
16
+ "sourceMaps": true,
17
+ "cwd": "${workspaceRoot}"
18
+ },
19
20
+ "name": "Run the current TypeScript file",
21
22
23
24
25
26
27
+ "--nolazy",
28
+ "-r",
29
+ "ts-node/register"
30
31
32
33
34
+ ]
35
+}
0 commit comments