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 22fba5a commit 8d75589Copy full SHA for 8d75589
.vscode/launch.json
@@ -0,0 +1,21 @@
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/vitest",
9
+ "args": ["run", "${file}", "--reporter=verbose"],
10
+ "console": "integratedTerminal"
11
+ },
12
13
14
15
+ "name": "Start testing (watch)",
16
17
+ "args": ["${file}", "--reporter=verbose"],
18
19
+ }
20
+ ]
21
+}
0 commit comments