{
    // Use IntelliSense to learn about possible Node.js debug 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": "Mocha Tests",
            "type": "node",
            "request": "launch",
            "cwd": "${workspaceRoot}",
            "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/mocha",
            "windows": {
                "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/mocha.cmd"
            },
            "linux": {
                "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/mocha"
            },
            "runtimeArgs": [
                "-u",
                "tdd",
                "--timeout",
                "999999",
                "--colors",
                "--exit",
                "${workspaceRoot}/lib-umd/index.node.spec.js"
            ],
            "internalConsoleOptions": "openOnSessionStart",
            "outFiles": [
                "${workspaceRoot}/build/**/*"
            ]
        },
        {
            "name": "Chrome Debug",
            "type": "chrome",
            "request": "launch",
            "url": "file:///${workspaceRoot}/test.html",
            "trace": true,
            "webRoot": "${workspaceRoot}/",
            "sourceMapPathOverrides": {
                "webpack:///./*": "${workspaceRoot}/*",
                "webpack:///*": "/*"
            }
        },
        {
            "name": "Chrome Debug WS",
            "type": "chrome",
            "request": "launch",
            "url": "http://localhost:8080/tests/test-util/test.html",
            "trace": true,
            "webRoot": "${workspaceRoot}/",
            "sourceMapPathOverrides": {
                "webpack:///./*": "${workspaceRoot}/*",
                "webpack:///*": "/*"
            }
        }
    ]
}