attempt at launch.json for debugging. Not very successful so far.

This commit is contained in:
Tamius Han 2018-12-07 21:37:32 +01:00
parent 11d7e59645
commit 6ef744bfa5

16
.vscode/launch.json vendored
View File

@ -5,10 +5,16 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"type": "node", "name": "Launch addon",
"request": "launch", "type": "firefox",
"name": "Launch Program", "request": "attach",
"program": "${file}" "port":6000,
// "reAttach": true,
"addonType": "webExtension",
"addonPath": "${workspaceFolder}"
} }
] ],
"firefox": {
"executable": "/usr/bin/firefox-developer-edition"
}
} }