Skip to content

Commit a9479f4

Browse files
committed
Add a vscode launch config
1 parent 8ff8a0c commit a9479f4

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.vscode/launch.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)