|
1 | 1 | // A launch configuration that compiles the extension and then opens it inside a new window
|
2 | 2 | {
|
3 |
| - "version": "0.1.0", |
4 |
| - "configurations": [ |
5 |
| - { |
6 |
| - "name": "Extension", |
7 |
| - "type": "extensionHost", |
8 |
| - "request": "launch", |
9 |
| - "runtimeExecutable": "${execPath}", |
10 |
| - "args": ["--extensionDevelopmentPath=${workspaceRoot}"], |
11 |
| - "stopOnEntry": false, |
12 |
| - "sourceMaps": true, |
13 |
| - "outFiles": ["${workspaceRoot}/out/src/**/*.js"], |
14 |
| - "preLaunchTask": "npm: watch" |
15 |
| - }, |
16 |
| - { |
17 |
| - "name": "Extension Tests", |
18 |
| - "type": "extensionHost", |
19 |
| - "request": "launch", |
20 |
| - "runtimeExecutable": "${execPath}", |
21 |
| - "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test"], |
22 |
| - "stopOnEntry": false, |
23 |
| - "sourceMaps": true, |
24 |
| - "outFiles": ["${workspaceRoot}/out/test/**/*.js"], |
25 |
| - "preLaunchTask": "npm: watch" |
26 |
| - } |
27 |
| - ] |
| 3 | + "version": "0.1.0", |
| 4 | + "configurations": [ |
| 5 | + { |
| 6 | + "name": "Extension", |
| 7 | + "type": "extensionHost", |
| 8 | + "request": "launch", |
| 9 | + "runtimeExecutable": "${execPath}", |
| 10 | + "args": ["--extensionDevelopmentPath=${workspaceRoot}" ], |
| 11 | + "stopOnEntry": false, |
| 12 | + "sourceMaps": true, |
| 13 | + "outFiles": [ "${workspaceRoot}/out/src/**/*.js" ], |
| 14 | + "preLaunchTask": "npm: watch" |
| 15 | + }, |
| 16 | + { |
| 17 | + "name": "Extension Tests", |
| 18 | + "type": "extensionHost", |
| 19 | + "request": "launch", |
| 20 | + "runtimeExecutable": "${execPath}", |
| 21 | + "args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ], |
| 22 | + "stopOnEntry": false, |
| 23 | + "sourceMaps": true, |
| 24 | + "outFiles": [ "${workspaceRoot}/out/test/**/*.js" ], |
| 25 | + "preLaunchTask": "npm: watch" |
| 26 | + } |
| 27 | + ] |
28 | 28 | }
|
0 commit comments