|
|
@@ -0,0 +1,61 @@
|
|
|
+{
|
|
|
+ "configurations": [
|
|
|
+ {
|
|
|
+ "type": "vscode-edge-devtools.debug",
|
|
|
+ "request": "launch",
|
|
|
+ "name": "Launch Microsoft Edge and open the Edge DevTools",
|
|
|
+ "url": "http://localhost:8080",
|
|
|
+ "webRoot": "e:\\web\\main\\index.html"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "type": "pwa-msedge",
|
|
|
+ "name": "Launch Microsoft Edge",
|
|
|
+ "request": "launch",
|
|
|
+ "runtimeArgs": [
|
|
|
+ "--remote-debugging-port=9222"
|
|
|
+ ],
|
|
|
+ "url": "e:\\web\\main\\index.html", // Provide your project's url to finish configuring
|
|
|
+ "presentation": {
|
|
|
+ "hidden": true
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "type": "pwa-msedge",
|
|
|
+ "name": "Launch Microsoft Edge in headless mode",
|
|
|
+ "request": "launch",
|
|
|
+ "runtimeArgs": [
|
|
|
+ "--headless",
|
|
|
+ "--remote-debugging-port=9222"
|
|
|
+ ],
|
|
|
+ "url": "e:\\web\\main\\index.html", // Provide your project's url to finish configuring
|
|
|
+ "presentation": {
|
|
|
+ "hidden": true
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "type": "vscode-edge-devtools.debug",
|
|
|
+ "name": "Open Edge DevTools",
|
|
|
+ "request": "attach",
|
|
|
+ "url": "e:\\web\\main\\index.html", // Provide your project's url to finish configuring
|
|
|
+ "presentation": {
|
|
|
+ "hidden": true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "compounds": [
|
|
|
+ {
|
|
|
+ "name": "Launch Edge Headless and attach DevTools",
|
|
|
+ "configurations": [
|
|
|
+ "Launch Microsoft Edge in headless mode",
|
|
|
+ "Open Edge DevTools"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "Launch Edge and attach DevTools",
|
|
|
+ "configurations": [
|
|
|
+ "Launch Microsoft Edge",
|
|
|
+ "Open Edge DevTools"
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]
|
|
|
+}
|