We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b551c8 commit 59b5443Copy full SHA for 59b5443
2 files changed
.vscode/launch.json
@@ -0,0 +1,22 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Run Extension",
6
+ "type": "extensionHost",
7
+ "request": "launch",
8
+ "args": [
9
+ "--extensionDevelopmentPath=${workspaceFolder}/extension"
10
+ ],
11
+ "sourceMaps": true,
12
+ "outFiles": [
13
+ "${workspaceFolder}/extension/out/**/*.js"
14
15
+ "resolveSourceMapLocations": [
16
+ "${workspaceFolder}/extension/out/**/*.js",
17
+ "!**/node_modules/**"
18
19
+ "preLaunchTask": "extension: build"
20
+ }
21
+ ]
22
+}
.vscode/tasks.json
@@ -0,0 +1,17 @@
+ "version": "2.0.0",
+ "tasks": [
+ "label": "extension: build",
+ "type": "shell",
+ "command": "npm",
+ "--prefix",
+ "${workspaceFolder}/extension",
+ "run",
+ "build"
+ "problemMatcher": []
0 commit comments