aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorAlex <i@neonxp.dev>2023-03-08 19:27:35 +0300
committerGitHub <noreply@github.com>2023-03-08 19:27:35 +0300
commitdf52915806db050a8e0cfab2d686acfdbf5e0c5c (patch)
tree237533159fe116e01dd0712084d9473db1148edd /.vscode/launch.json
Initial commitHEADmain
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json29
1 files changed, 29 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..d16bf5c
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,29 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "pwa-msedge",
+ "request": "launch",
+ "name": "Run PWA",
+ "webRoot": "${workspaceFolder}/",
+ "runtimeArgs": [
+ "--app=http://localhost:3000"
+ ],
+ "sourceMapPathOverrides": {
+ "../../src": "${workspaceFolder}/src",
+ "../../src/*": "${workspaceFolder}/src/*"
+ },
+ "preLaunchTask": "npm run dev-task",
+ "postDebugTask": "postdebugKill"
+ },
+ {
+ "name": "Launch Microsoft Edge and open the Edge DevTools",
+ "request": "launch",
+ "type": "vscode-edge-devtools.debug",
+ "url": "" // Provide your project's url to finish configuring
+ }
+ ]
+} \ No newline at end of file