fix launch.json

This commit is contained in:
Tamius Han 2020-05-29 22:50:07 +02:00
parent 4a761efaed
commit 88a3298cfa

17
.vscode/launch.json vendored
View File

@ -4,6 +4,17 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{
"type": "firefox",
"request": "attach",
"name": "Attach",
"pathMappings": [
{
"url": "webpack:///ext",
"path": "${workspaceFolder}/src/ext"
}
]
},
{ {
"name": "Launch addon", "name": "Launch addon",
"type": "firefox", "type": "firefox",
@ -12,6 +23,12 @@
"reAttach": true, "reAttach": true,
"addonType": "webExtension", "addonType": "webExtension",
"addonPath": "${workspaceFolder}/dist-ff", "addonPath": "${workspaceFolder}/dist-ff",
"pathMappings": [
{
"url": "webpack:///ext",
"path": "${workspaceFolder}/src/ext"
},
]
} }
], ],
"firefox": { "firefox": {