{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Dev Docs",
            "type": "pwa-msedge",
            "request": "launch",
            "url": "http://localhost:3000/Visualization/",
            "webRoot": "${workspaceRoot}",
            "preLaunchTask": "serve-docs",
            "postDebugTask": "Terminate All Tasks"
        },
        {
            "name": "Built Docs",
            "type": "pwa-msedge",
            "request": "launch",
            "url": "http://localhost:3000/Visualization/",
            "webRoot": "${workspaceRoot}"
        },
        {
            "name": "index.html (vite)",
            "type": "pwa-msedge",
            "request": "launch",
            "url": "http://localhost:3000/index.html",
            "webRoot": "${workspaceRoot}",
            "preLaunchTask": "serve-vite",
            "postDebugTask": "Terminate All Tasks"
        },
        {
            "name": "esbuild",
            "request": "launch",
            "runtimeArgs": [
                "run-script",
                "bundle-root"
            ],
            "runtimeExecutable": "npm",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "type": "node"
        },
        {
            "type": "chrome",
            "request": "launch",
            "name": "Graph",
            "url": "file:///${workspaceRoot}/packages/graph/index.html",
            "webRoot": "${workspaceRoot}/demos/gallery",
            "runtimeArgs": [
                "--allow-file-access-from-files",
                "--allow-file-access",
            ]
        },
        {
            "name": "Dashy-dsp-dev",
            "type": "chrome",
            "request": "launch",
            "url": "file:///${workspaceRoot}/demos/dashy/index.html?dsp=https://dsp-dev.risk.regn.net/ws/selectLayout/json?reqsource=avp%26uuid=ca0c6158-de19-4d18-9dcf-a1723bf30bf9",
            "runtimeArgs": [
                "--disable-web-security"
            ],
            "webRoot": "${workspaceRoot}/demos/dashy"
        },
        {
            "name": "Storyboard",
            "type": "chrome",
            "request": "launch",
            "url": "http://127.0.0.1:8080/demos/storyboard/index.html",
            "runtimeArgs": [
                "--disable-web-security"
            ],
            "webRoot": "${workspaceRoot}/demos/storyboard"
        },
    ]
}