Skip to content

Commit 6ab3cb6

Browse files
committed
Add .vscode/launch.json
1 parent cdec8bb commit 6ab3cb6

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.vscode/launch.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "extensionHost",
6+
"request": "launch",
7+
"name": "Launch Extension",
8+
"runtimeExecutable": "${execPath}",
9+
"args": [
10+
"--extensionDevelopmentPath=${workspaceFolder}",
11+
"${workspaceFolder}"
12+
],
13+
"outFiles": [
14+
"${workspaceFolder}/client/out/**/*.js",
15+
"${workspaceFolder}/server/out/**/*.js",
16+
],
17+
"autoAttachChildProcesses": true,
18+
"preLaunchTask": {
19+
"type": "npm",
20+
"script": "watch"
21+
}
22+
}
23+
]
24+
}

0 commit comments

Comments
 (0)