Skip to content

Commit 9df478f

Browse files
committed
feat: add .vscode/launch.json
1 parent ea1a5a1 commit 9df478f

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ npm-debug.log*
55

66
# IDE & editors
77
.idea
8-
.vscode
98

109
# Dependency directory
1110
node_modules/

.vscode/launch.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Launch Extension",
9+
"type": "extensionHost",
10+
"request": "launch",
11+
"runtimeExecutable": "${execPath}",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}",
14+
"--disable-extensions",
15+
"${workspaceFolder}/test"
16+
]
17+
},
18+
]
19+
}

0 commit comments

Comments
 (0)