diff options
Diffstat (limited to 'editors/code/.vscode/launch.json')
-rw-r--r-- | editors/code/.vscode/launch.json | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/editors/code/.vscode/launch.json b/editors/code/.vscode/launch.json deleted file mode 100644 index c3578f476..000000000 --- a/editors/code/.vscode/launch.json +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
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": "Extension", | ||
10 | "type": "extensionHost", | ||
11 | "request": "launch", | ||
12 | "runtimeExecutable": "${execPath}", | ||
13 | "args": ["--extensionDevelopmentPath=${workspaceFolder}"], | ||
14 | "outFiles": ["${workspaceFolder}/out/**/*.js"], | ||
15 | "preLaunchTask": "npm: watch" | ||
16 | }, | ||
17 | { | ||
18 | "name": "Extension Tests", | ||
19 | "type": "extensionHost", | ||
20 | "request": "launch", | ||
21 | "runtimeExecutable": "${execPath}", | ||
22 | "args": [ | ||
23 | "${workspaceFolder}/src/test/", | ||
24 | "--extensionDevelopmentPath=${workspaceFolder}", | ||
25 | "--extensionTestsPath=${workspaceFolder}/out/test" | ||
26 | ], | ||
27 | "outFiles": ["${workspaceFolder}/out/test/**/*.js"], | ||
28 | "preLaunchTask": "npm: watch" | ||
29 | } | ||
30 | ] | ||
31 | } | ||