File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ dist-ssr
1515# Editor directories and files
1616.vscode /*
1717! .vscode /extensions.json
18+ ! .vscode /launch.json
1819.idea
1920.DS_Store
2021* .suo
Original file line number Diff line number Diff line change 1+ // A launch configuration that compiles the extension and then opens it inside a new window
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+ {
6+ "version" : " 0.2.0" ,
7+ "configurations" : [
8+ {
9+ "name" : " Run Extension" ,
10+ "type" : " extensionHost" ,
11+ "request" : " launch" ,
12+ "args" : [
13+ " --extensionDevelopmentPath=${workspaceFolder}"
14+ ],
15+ "outFiles" : [
16+ " ${workspaceFolder}/dist/**/*.js"
17+ ],
18+ "preLaunchTask" : " npm: compile"
19+ }
20+ ]
21+ }
You can’t perform that action at this time.
0 commit comments