We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ff8a0c commit a9479f4Copy full SHA for a9479f4
1 file changed
.vscode/launch.json
@@ -0,0 +1,20 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Run application",
6
+ "type": "node",
7
+ "request": "launch",
8
+ "cwd": "${workspaceFolder}",
9
+ "console": "integratedTerminal",
10
+ "runtimeExecutable": "npm",
11
+ "runtimeArgs": [
12
+ "run",
13
+ "dev"
14
+ ],
15
+ "skipFiles": [
16
+ "<node_internals>/**"
17
+ ]
18
+ }
19
20
0 commit comments