ultrawidify/.vscode/launch.json

40 lines
961 B
JSON
Raw Normal View History

{
2020-05-29 22:50:07 +02:00
// 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
"version": "0.2.0",
"configurations": [
{
"type": "firefox",
"request": "attach",
"name": "Attach",
"pathMappings": [
{
2020-05-29 22:50:07 +02:00
"url": "webpack:///ext",
"path": "${workspaceFolder}/src/ext"
}
2020-05-29 22:50:07 +02:00
]
},
{
"name": "Launch addon",
"type": "firefox",
"request": "launch",
"port": 6000,
"reAttach": true,
"addonType": "webExtension",
"addonPath": "${workspaceFolder}/dist-ff",
"pathMappings": [
{
"url": "webpack:///ext",
"path": "${workspaceFolder}/src/ext"
},
]
}
2020-05-29 22:50:07 +02:00
],
"firefox": {
"executable": "/usr/bin/firefox-developer-edition",
"firefoxArgs": [
"--start-debugger-server"
]
}
}