build(vscode_debug):add skipFiles

This commit is contained in:
jaw52 2022-11-04 22:30:42 +08:00
parent 2512ad1652
commit 72ee89d06d

9
.vscode/launch.json vendored
View File

@ -40,7 +40,14 @@
"port": 9229, "port": 9229,
"request": "attach", "request": "attach",
"type": "pwa-chrome", "type": "pwa-chrome",
"timeout": 60000 "timeout": 60000,
"skipFiles": [
"<node_internals>/**",
"${workspaceRoot}/node_modules/**",
"${workspaceRoot}/dist-electron/**",
// Skip files in host(VITE_DEV_SERVER_URL)
"http://127.0.0.1:3344/**"
]
}, },
] ]
} }