You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
701 B
25 lines
701 B
4 years ago
|
// flatpak run org.mozilla.firefox --start-debugger-server
|
||
|
|
||
|
{
|
||
|
"version": "0.2.0",
|
||
4 years ago
|
"configurations": [{
|
||
4 years ago
|
"type": "firefox",
|
||
|
"request": "attach",
|
||
|
"name": "Attach Firefox",
|
||
4 years ago
|
"url": "http://127.0.0.1:8080/",
|
||
4 years ago
|
"webRoot": "${workspaceFolder}",
|
||
4 years ago
|
"pathMappings": [{
|
||
|
"url": "http://127.0.0.1:8080",
|
||
|
"path": "${workspaceFolder}/public"
|
||
|
}]
|
||
4 years ago
|
},
|
||
|
{
|
||
|
"type": "node",
|
||
|
"request": "attach",
|
||
|
"name": "Node: Nodemon",
|
||
|
"processId": "${command:PickProcess}",
|
||
|
"restart": true,
|
||
|
"protocol": "inspector"
|
||
|
}
|
||
|
]
|
||
|
}
|