2021-11-06 16:49:53 +00:00
|
|
|
// A launch configuration that compiles the extension and then opens it inside a new window
|
|
|
|
// Use IntelliSense to learn about possible attributes.
|
|
|
|
// Hover to view descriptions of existing attributes.
|
|
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
|
|
{
|
2021-11-13 08:49:34 +00:00
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"name": "Run Web Extension ",
|
|
|
|
"type": "pwa-extensionHost",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${workspaceFolder}/src/extension.ts",
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"args": [
|
|
|
|
"--disable-extensions",
|
|
|
|
"--extensionDevelopmentPath=${workspaceFolder}",
|
|
|
|
"${workspaceFolder}/src/extension.ts"
|
|
|
|
],
|
2022-07-28 07:19:53 +00:00
|
|
|
"outFiles": ["${workspaceFolder}/dist/web/**/*.js", "!**/node_modules/**"],
|
|
|
|
"skipFiles": ["<node_internals>/**", "**/node_modules/**"],
|
|
|
|
"sourceMaps": true
|
2021-11-13 08:49:34 +00:00
|
|
|
}
|
|
|
|
]
|
2022-07-28 07:19:53 +00:00
|
|
|
}
|