|
2 | 2 | { |
3 | 3 | "version": "0.1.0", |
4 | 4 | "configurations": [ |
5 | | - { |
6 | | - "name": "Run Extension", |
7 | | - "type": "extensionHost", |
8 | | - "request": "launch", |
9 | | - "runtimeExecutable": "${execPath}", |
10 | | - "args": ["--extensionDevelopmentPath=${workspaceFolder}" ], |
11 | | - "env": { |
12 | | - "DEBUG_VSCODE_JAVA":"true" |
13 | | - }, |
14 | | - "stopOnEntry": false, |
15 | | - "sourceMaps": true, |
16 | | - "outFiles": [ "${workspaceFolder}/dist/**/*.js" ], |
17 | | - "preLaunchTask": "npm: watch" |
| 5 | + { |
| 6 | + "name": "Run Extension", |
| 7 | + "type": "extensionHost", |
| 8 | + "request": "launch", |
| 9 | + "runtimeExecutable": "${execPath}", |
| 10 | + "args": ["--extensionDevelopmentPath=${workspaceFolder}" ], |
| 11 | + "env": { |
| 12 | + "DEBUG_VSCODE_JAVA":"true" |
18 | 13 | }, |
19 | | - { |
20 | | - "name": "Extension Tests", |
21 | | - "type": "extensionHost", |
22 | | - "request": "launch", |
23 | | - "runtimeExecutable": "${execPath}", |
24 | | - "args": [ |
25 | | - "--extensionDevelopmentPath=${workspaceFolder}", |
26 | | - "--extensionTestsPath=${workspaceFolder}/out/test/suite/index" |
27 | | - ], |
28 | | - "stopOnEntry": false, |
29 | | - "sourceMaps": true, |
30 | | - "outFiles": [ "${workspaceFolder}/out/test/**/*.js" ], |
31 | | - "preLaunchTask": "npm: compile" |
32 | | - }, |
33 | | - { |
34 | | - "type": "java", |
35 | | - "name": "Attach to Plugin", |
36 | | - "request": "attach", |
37 | | - "hostName": "localhost", |
38 | | - "port": 1044 |
39 | | - } |
| 14 | + "stopOnEntry": false, |
| 15 | + "sourceMaps": true, |
| 16 | + "outFiles": [ "${workspaceFolder}/dist/**/*.js" ], |
| 17 | + "preLaunchTask": "npm: watch" |
| 18 | + }, |
| 19 | + { |
| 20 | + "type": "java", |
| 21 | + "name": "Attach to Plugin", |
| 22 | + "request": "attach", |
| 23 | + "hostName": "localhost", |
| 24 | + "port": 1044 |
| 25 | + }, |
| 26 | + { |
| 27 | + "name": "Extension Tests - General", |
| 28 | + "type": "extensionHost", |
| 29 | + "request": "launch", |
| 30 | + "runtimeExecutable": "${execPath}", |
| 31 | + "args": [ |
| 32 | + "${workspaceFolder}/test/java9/", |
| 33 | + "--extensionDevelopmentPath=${workspaceFolder}", |
| 34 | + "--extensionTestsPath=${workspaceFolder}/dist/test/suite/index" |
| 35 | + ], |
| 36 | + "stopOnEntry": false, |
| 37 | + "sourceMaps": true, |
| 38 | + "outFiles": [ "${workspaceFolder}/dist/**/*.js" ], |
| 39 | + "preLaunchTask": "npm: compile" |
| 40 | + }, |
| 41 | + { |
| 42 | + "name": "Extension Tests - Simple Project", |
| 43 | + "type": "extensionHost", |
| 44 | + "request": "launch", |
| 45 | + "runtimeExecutable": "${execPath}", |
| 46 | + "args": [ |
| 47 | + "${workspaceFolder}/test/simple/", |
| 48 | + "--extensionDevelopmentPath=${workspaceFolder}", |
| 49 | + "--extensionTestsPath=${workspaceFolder}/dist/test/simple-suite/index" |
| 50 | + ], |
| 51 | + "stopOnEntry": false, |
| 52 | + "sourceMaps": true, |
| 53 | + "outFiles": [ "${workspaceFolder}/dist/**/*.js" ], |
| 54 | + "preLaunchTask": "npm: compile" |
| 55 | + }, |
| 56 | + { |
| 57 | + "name": "Extension Tests - Maven Project", |
| 58 | + "type": "extensionHost", |
| 59 | + "request": "launch", |
| 60 | + "runtimeExecutable": "${execPath}", |
| 61 | + "args": [ |
| 62 | + "${workspaceFolder}/test/maven/", |
| 63 | + "--extensionDevelopmentPath=${workspaceFolder}", |
| 64 | + "--extensionTestsPath=${workspaceFolder}/dist/test/maven-suite/index" |
| 65 | + ], |
| 66 | + "stopOnEntry": false, |
| 67 | + "sourceMaps": true, |
| 68 | + "outFiles": [ "${workspaceFolder}/dist/**/*.js" ], |
| 69 | + "preLaunchTask": "npm: compile" |
| 70 | + }, |
| 71 | + { |
| 72 | + "name": "Extension Tests - Gradle Project", |
| 73 | + "type": "extensionHost", |
| 74 | + "request": "launch", |
| 75 | + "runtimeExecutable": "${execPath}", |
| 76 | + "args": [ |
| 77 | + "${workspaceFolder}/test/gradle/", |
| 78 | + "--extensionDevelopmentPath=${workspaceFolder}", |
| 79 | + "--extensionTestsPath=${workspaceFolder}/dist/test/gradle-suite/index" |
| 80 | + ], |
| 81 | + "stopOnEntry": false, |
| 82 | + "sourceMaps": true, |
| 83 | + "outFiles": [ "${workspaceFolder}/dist/**/*.js" ], |
| 84 | + "preLaunchTask": "npm: compile" |
| 85 | + } |
40 | 86 | ] |
41 | 87 | } |
0 commit comments