|
2 | 2 | * Copyright (c) Rowe Wilson Frederisk Holme. All rights reserved.
|
3 | 3 | * Licensed under the MIT License. See License.txt in the project root for license information.
|
4 | 4 | *--------------------------------------------------------------------------------------------*/
|
5 |
| - |
6 | 5 | // A launch configuration that launches the extension inside a new window
|
7 | 6 | // Use IntelliSense to learn about possible attributes.
|
8 | 7 | // Hover to view descriptions of existing attributes.
|
|
12 | 11 | "configurations": [
|
13 | 12 | {
|
14 | 13 | "name": "Launch Extension",
|
15 |
| - "type": "extensionHost", |
| 14 | + "type": "pwa-extensionHost", |
16 | 15 | "request": "launch",
|
17 | 16 | "runtimeExecutable": "${execPath}",
|
18 | 17 | "args": [
|
|
25 | 24 | "preLaunchTask": "npm: compile"
|
26 | 25 | },
|
27 | 26 | {
|
28 |
| - "name": "Launch Extension With Other Extensions", |
29 |
| - "type": "extensionHost", |
| 27 | + "name": "Launch Extension with Other Extensions", |
| 28 | + "type": "pwa-extensionHost", |
30 | 29 | "request": "launch",
|
31 | 30 | "runtimeExecutable": "${execPath}",
|
32 | 31 | "args": [
|
|
37 | 36 | ],
|
38 | 37 | "preLaunchTask": "npm: compile"
|
39 | 38 | },
|
| 39 | + { |
| 40 | + "name": "Launch Extension of The Last Building", |
| 41 | + "type": "pwa-extensionHost", |
| 42 | + "request": "launch", |
| 43 | + "runtimeExecutable": "${execPath}", |
| 44 | + "args": [ |
| 45 | + "--disable-extensions", |
| 46 | + "--extensionDevelopmentPath=${workspaceFolder}" |
| 47 | + ], |
| 48 | + "outFiles": [ |
| 49 | + "${workspaceFolder}/dist/**/*.js" |
| 50 | + ], |
| 51 | + }, |
40 | 52 | {
|
41 | 53 | "name": "Extension Tests",
|
42 |
| - "type": "extensionHost", |
| 54 | + "type": "pwa-extensionHost", |
43 | 55 | "request": "launch",
|
44 | 56 | "runtimeExecutable": "${execPath}",
|
45 | 57 | "args": [
|
|
0 commit comments