|
1 |
| -// Copyright 2020 Workiva Inc. |
2 |
| -// |
3 |
| -// Licensed under the Apache License, Version 2.0 (the "License"); |
4 |
| -// you may not use this file except in compliance with the License. |
5 |
| -// You may obtain a copy of the License at |
6 |
| -// |
7 |
| -// http://www.apache.org/licenses/LICENSE-2.0 |
8 |
| -// |
9 |
| -// Unless required by applicable law or agreed to in writing, software |
10 |
| -// distributed under the License is distributed on an "AS IS" BASIS, |
11 |
| -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 |
| -// See the License for the specific language governing permissions and |
13 |
| -// limitations under the License. |
14 |
| -// |
15 | 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. |
16 | 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
17 | 5 | {
|
18 | 6 | "version": "0.2.0",
|
|
21 | 9 | "name": "Run Extension",
|
22 | 10 | "type": "extensionHost",
|
23 | 11 | "request": "launch",
|
24 |
| - "runtimeExecutable": "${execPath}", |
25 | 12 | "args": [
|
26 | 13 | "--extensionDevelopmentPath=${workspaceFolder}"
|
27 | 14 | ],
|
28 | 15 | "outFiles": [
|
29 | 16 | "${workspaceFolder}/out/**/*.js"
|
30 | 17 | ],
|
31 | 18 | "preLaunchTask": "${defaultBuildTask}"
|
32 |
| - }, |
33 |
| - { |
34 |
| - "name": "Extension Tests", |
35 |
| - "type": "extensionHost", |
36 |
| - "request": "launch", |
37 |
| - "runtimeExecutable": "${execPath}", |
38 |
| - "args": [ |
39 |
| - "--extensionDevelopmentPath=${workspaceFolder}", |
40 |
| - "--extensionTestsPath=${workspaceFolder}/out/test/suite/index" |
41 |
| - ], |
42 |
| - "outFiles": [ |
43 |
| - "${workspaceFolder}/out/test/**/*.js" |
44 |
| - ], |
45 |
| - "preLaunchTask": "${defaultBuildTask}" |
46 | 19 | }
|
47 | 20 | ]
|
48 | 21 | }
|
0 commit comments