26 lines
659 B
JSON
26 lines
659 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Firefox Dev Edition",
|
|
"type": "firefox",
|
|
"request": "launch",
|
|
"url": "http://localhost:4730/",
|
|
"webRoot": "${workspaceFolder}",
|
|
"firefoxExecutable": "/Applications/Firefox Nightly.app/Contents/MacOS/firefox",
|
|
"preLaunchTask": "🚀 dev",
|
|
"pathMappings": [
|
|
{
|
|
"url": "http://localhost:4730",
|
|
"path": "${workspaceFolder}"
|
|
}
|
|
],
|
|
"reAttach": true,
|
|
"reloadOnChange": {
|
|
"watch": "${workspaceFolder}/src/**/*.{js,jsx,ts,tsx,vue}",
|
|
"ignore": "**/node_modules/**"
|
|
}
|
|
}
|
|
]
|
|
}
|