{
    // 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": [
        {
            "name": "index.html",
            "type": "chrome",
            "request": "launch",
            "url": "file:///${workspaceRoot}/index.html",
            "runtimeArgs": [
                "--allow-file-access-from-files",
                "--disable-web-security"
            ],
            "webRoot": "${workspaceRoot}"
        },
        {
            "name": "docs/demo.md",
            "type": "chrome",
            "request": "launch",
            "url": "file:///${workspaceRoot}/index.html?doc=docs/demo.md",
            "runtimeArgs": [
                "--allow-file-access-from-files",
                "--disable-web-security"
            ],
            "webRoot": "${workspaceRoot}"
        },
        {
            "name": "Generate index.json",
            "type": "node",
            "request": "launch",
            "program": "${workspaceFolder}/util/index.ts",
            "cwd": "${workspaceFolder}",
            "outFiles": [
                "${workspaceFolder}/lib-umd/**/*.js"
            ]
        }
    ]
}