|
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 | | - "name": "Run Extension", |
9 | | - "type": "extensionHost", |
10 | | - "request": "launch", |
11 | | - "runtimeExecutable": "${execPath}", |
12 | | - "args": [ |
13 | | - "--extensionDevelopmentPath=${workspaceFolder}" |
14 | | - ], |
15 | | - "outFiles": [ |
16 | | - "${workspaceFolder}/out/**/*.js" |
17 | | - ], |
18 | | - "preLaunchTask": "npm: compile" |
19 | | - }, |
20 | | - { |
21 | | - "name": "Extension Tests", |
22 | | - "type": "extensionHost", |
23 | | - "request": "launch", |
24 | | - "runtimeExecutable": "${execPath}", |
25 | | - "args": [ |
26 | | - "--extensionDevelopmentPath=${workspaceFolder}", |
27 | | - "--extensionTestsPath=${workspaceFolder}/out/test" |
28 | | - ], |
29 | | - "outFiles": [ |
30 | | - "${workspaceFolder}/out/test/**/*.js" |
31 | | - ], |
32 | | - "preLaunchTask": "npm: compile" |
33 | | - }, |
34 | | - { |
35 | | - "name": "Debug tests", |
36 | | - "type": "node", |
37 | | - "request": "launch", |
38 | | - "cwd": "${workspaceFolder}", |
39 | | - "runtimeExecutable": "npm", |
40 | | - "runtimeArgs": [ |
41 | | - "run-script", "debug" |
42 | | - ], |
43 | | - "port": 9229 |
44 | | - } |
45 | | - ] |
| 6 | + "version": "0.2.0", |
| 7 | + "configurations": [ |
| 8 | + { |
| 9 | + "name": "Run Extension", |
| 10 | + "type": "extensionHost", |
| 11 | + "request": "launch", |
| 12 | + "runtimeExecutable": "${execPath}", |
| 13 | + "args": ["--extensionDevelopmentPath=${workspaceFolder}"], |
| 14 | + "outFiles": ["${workspaceFolder}/out/**/*.js"], |
| 15 | + "preLaunchTask": "npm: compile" |
| 16 | + } |
| 17 | + ] |
46 | 18 | } |
0 commit comments