fix launch.json
This commit is contained in:
parent
4a761efaed
commit
88a3298cfa
17
.vscode/launch.json
vendored
17
.vscode/launch.json
vendored
@ -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": {
|
||||||
|
Loading…
Reference in New Issue
Block a user