aboutsummaryrefslogblamecommitdiff
path: root/.vscode/launch.json
blob: d16bf5c9649fa7afb89b5ccb765f03eee1da8784 (plain) (tree)




























                                                                                  
{
    // 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
        }
    ]
}