We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e495a4d commit 0871d5aCopy full SHA for 0871d5a
.vscode/launch.json
@@ -0,0 +1,18 @@
1
+// A launch configuration that launches the extension 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": "Extension",
10
+ "type": "extensionHost",
11
+ "request": "launch",
12
+ "runtimeExecutable": "${execPath}",
13
+ "args": [
14
+ "--extensionDevelopmentPath=${workspaceFolder}"
15
+ ]
16
+ }
17
18
+}
.vscode/settings.json
@@ -0,0 +1,2 @@
.vscodeignore
@@ -0,0 +1,3 @@
+.vscode-test/**
+.gitignore
+vsc-extension-quickstart.md
0 commit comments