|
3 | 3 | // Hover to view descriptions of existing attributes. |
4 | 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 |
5 | 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}/vscode-wpilib" |
15 | | - ], |
16 | | - "outFiles": [ |
17 | | - "${workspaceFolder}/vscode-wpilib/out/**/*.js" |
18 | | - ], |
19 | | - "preLaunchTask": "vscode-web-watch" |
20 | | - }, |
21 | | - { |
22 | | - "name": "Extension Tests", |
23 | | - "type": "extensionHost", |
24 | | - "request": "launch", |
25 | | - "runtimeExecutable": "${execPath}", |
26 | | - "args": [ |
27 | | - "--extensionDevelopmentPath=${workspaceFolder}/vscode-wpilib", |
28 | | - "--extensionTestsPath=${workspaceFolder}/vscode-wpilib/out/test" |
29 | | - ], |
30 | | - "outFiles": [ |
31 | | - "${workspaceFolder}/vscode-wpilib/out/test/**/*.js" |
32 | | - ], |
33 | | - "preLaunchTask": "vscode-web-watch" |
34 | | - }, |
35 | | - { |
36 | | - "type": "node", |
37 | | - "request": "launch", |
38 | | - "name": "Standalone: Main", |
39 | | - "protocol": "inspector", |
40 | | - "runtimeExecutable": "${workspaceFolder}/wpilib-utility-standalone/node_modules/.bin/electron", |
41 | | - "runtimeArgs": [ |
42 | | - "--remote-debugging-port=9223", |
43 | | - "wpilib-utility-standalone" |
44 | | - ], |
45 | | - "outFiles": [ |
46 | | - "${workspaceFolder}/wpilib-utility-standalone/out/**/*.js" |
47 | | - ], |
48 | | - "windows": { |
49 | | - "runtimeExecutable": "${workspaceFolder}/wpilib-utility-standalone/node_modules/.bin/electron.cmd" |
50 | | - }, |
51 | | - "preLaunchTask": "standalone-watch" |
52 | | - }, |
53 | | - { |
54 | | - "name": "Standalone: Renderer", |
55 | | - "type": "chrome", |
56 | | - "request": "attach", |
57 | | - "port": 9223, |
58 | | - "webRoot": "${workspaceFolder}/wpilib-utility-standalone", |
59 | | - "timeout": 30000 |
60 | | - } |
61 | | - ], |
62 | | - "compounds": [ |
63 | | - { |
64 | | - "name": "Standalone: All", |
65 | | - "configurations": [ |
66 | | - "Standalone: Main", |
67 | | - "Standalone: Renderer" |
68 | | - ] |
69 | | - } |
70 | | - ] |
| 6 | + "version": "0.2.0", |
| 7 | + "configurations": [ |
| 8 | + { |
| 9 | + "name": "Extension", |
| 10 | + "type": "extensionHost", |
| 11 | + "request": "launch", |
| 12 | + "runtimeExecutable": "${execPath}", |
| 13 | + "args": ["--extensionDevelopmentPath=${workspaceFolder}/vscode-wpilib"], |
| 14 | + "outFiles": ["${workspaceFolder}/vscode-wpilib/out/**/*.js"], |
| 15 | + "preLaunchTask": "vscode-web-watch" |
| 16 | + }, |
| 17 | + { |
| 18 | + "name": "Extension Tests", |
| 19 | + "type": "extensionHost", |
| 20 | + "request": "launch", |
| 21 | + "runtimeExecutable": "${execPath}", |
| 22 | + "args": [ |
| 23 | + "--extensionDevelopmentPath=${workspaceFolder}/vscode-wpilib", |
| 24 | + "--extensionTestsPath=${workspaceFolder}/vscode-wpilib/out/test" |
| 25 | + ], |
| 26 | + "outFiles": ["${workspaceFolder}/vscode-wpilib/out/test/**/*.js"], |
| 27 | + "preLaunchTask": "vscode-web-watch" |
| 28 | + }, |
| 29 | + { |
| 30 | + "type": "node", |
| 31 | + "request": "launch", |
| 32 | + "name": "Standalone: Main", |
| 33 | + "protocol": "inspector", |
| 34 | + "runtimeExecutable": "${workspaceFolder}/wpilib-utility-standalone/node_modules/.bin/electron", |
| 35 | + "runtimeArgs": [ |
| 36 | + "--remote-debugging-port=9223", |
| 37 | + "wpilib-utility-standalone" |
| 38 | + ], |
| 39 | + "outFiles": ["${workspaceFolder}/wpilib-utility-standalone/out/**/*.js"], |
| 40 | + "windows": { |
| 41 | + "runtimeExecutable": "${workspaceFolder}/wpilib-utility-standalone/node_modules/.bin/electron.cmd" |
| 42 | + }, |
| 43 | + "preLaunchTask": "standalone-watch" |
| 44 | + }, |
| 45 | + { |
| 46 | + "name": "Standalone: Renderer", |
| 47 | + "type": "chrome", |
| 48 | + "request": "attach", |
| 49 | + "port": 9223, |
| 50 | + "webRoot": "${workspaceFolder}/wpilib-utility-standalone", |
| 51 | + "timeout": 30000 |
| 52 | + } |
| 53 | + ], |
| 54 | + "compounds": [ |
| 55 | + { |
| 56 | + "name": "Standalone: All", |
| 57 | + "configurations": ["Standalone: Main", "Standalone: Renderer"] |
| 58 | + } |
| 59 | + ] |
71 | 60 | } |
0 commit comments