We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad83d5d commit 3ae3de7Copy full SHA for 3ae3de7
.gitignore
@@ -197,5 +197,3 @@ FakesAssemblies/
197
198
*.vsix
199
snippets/snippets.json
200
-.vscode/
201
-!.vscode/launch.json
.vscode/launch.json
@@ -7,7 +7,8 @@
7
"request": "launch",
8
"runtimeExecutable": "${execPath}",
9
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
10
- "stopOnEntry": false
+ "stopOnEntry": false,
11
+ "preLaunchTask": "clean"
12
}
13
]
14
.vscode/tasks.json
@@ -0,0 +1,11 @@
1
+{
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "label": "clean",
6
+ "type": "npm",
+ "script": "clean",
+ "problemMatcher": []
+ }
+ ]
+}
0 commit comments