-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
65 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"type": "pwa-msedge", | ||
"name": "Launch Microsoft Edge", | ||
"request": "launch", | ||
"runtimeArgs": ["--remote-debugging-port=9222"], | ||
"preLaunchTask": "pnpm: dev", | ||
"url": "http://localhost:5173/", // 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": "http://localhost:5173/", // Provide your project's url to finish configuring | ||
"presentation": { | ||
"hidden": true | ||
} | ||
}, | ||
{ | ||
"type": "vscode-edge-devtools.debug", | ||
"name": "Open Edge DevTools", | ||
"request": "attach", | ||
"url": "http://localhost:5173/", // 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"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
} | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"npm.packageManager": "pnpm" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "dev", | ||
"problemMatcher": [], | ||
"label": "pnpm: dev", | ||
"detail": "vite serve" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters