Files
vue-ts-example-2025/.vscode/launch.json
严浩 7b6f7ad2fb
Some checks failed
/ build-and-test (push) Failing after 1m24s
/ playwright (push) Successful in 1m46s
CI/CD Pipeline / build-and-deploy (push) Failing after 2m2s
CI/CD Pipeline / playwright (push) Successful in 4m5s
feat(vscode): 增强开发调试配置支持
2025-10-16 16:37:40 +08:00

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/**"
}
}
]
}