diff options
author | Aleksey Kladov <[email protected]> | 2018-08-27 20:52:43 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-08-27 20:52:43 +0100 |
commit | 422efe59afe333a8371afe6f9fb45f159a6fb07f (patch) | |
tree | cfdc2a4209419e690257cff2235b3fd3f75fe53d /code/.vscode/launch.json | |
parent | 57518153147ad53639f16cc940d219dc582c550a (diff) |
you better run
Diffstat (limited to 'code/.vscode/launch.json')
-rw-r--r-- | code/.vscode/launch.json | 40 |
1 files changed, 27 insertions, 13 deletions
diff --git a/code/.vscode/launch.json b/code/.vscode/launch.json index a5dd523df..c174db304 100644 --- a/code/.vscode/launch.json +++ b/code/.vscode/launch.json | |||
@@ -1,22 +1,36 @@ | |||
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 | ||
1 | { | 5 | { |
2 | // Use IntelliSense to learn about possible attributes. | 6 | "version": "0.2.0", |
3 | // Hover to view descriptions of existing attributes. | ||
4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
5 | "version": "0.2.0", | ||
6 | "configurations": [ | 7 | "configurations": [ |
7 | { | 8 | { |
8 | "name": "Launch Extension", | 9 | "name": "Extension", |
9 | "type": "extensionHost", | 10 | "type": "extensionHost", |
10 | "request": "launch", | 11 | "request": "launch", |
11 | "runtimeExecutable": "${execPath}", | 12 | "runtimeExecutable": "${execPath}", |
12 | "args": ["--extensionDevelopmentPath='./'"], | 13 | "args": [ |
13 | "env": { | 14 | "--extensionDevelopmentPath=${workspaceFolder}" |
14 | "RUST_LOG": "m=trace" | 15 | ], |
15 | }, | 16 | "outFiles": [ |
16 | "stopOnEntry": false, | 17 | "${workspaceFolder}/out/**/*.js" |
17 | "sourceMaps": true, | 18 | ], |
18 | "outFiles": [ "./out/src/**/*.js" ], | 19 | "preLaunchTask": "npm: watch" |
19 | "preLaunchTask": "npm" | ||
20 | }, | 20 | }, |
21 | { | ||
22 | "name": "Extension Tests", | ||
23 | "type": "extensionHost", | ||
24 | "request": "launch", | ||
25 | "runtimeExecutable": "${execPath}", | ||
26 | "args": [ | ||
27 | "--extensionDevelopmentPath=${workspaceFolder}", | ||
28 | "--extensionTestsPath=${workspaceFolder}/out/test" | ||
29 | ], | ||
30 | "outFiles": [ | ||
31 | "${workspaceFolder}/out/test/**/*.js" | ||
32 | ], | ||
33 | "preLaunchTask": "npm: watch" | ||
34 | } | ||
21 | ] | 35 | ] |
22 | } | 36 | } |