{
    // 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": "node",
            "name": "vscode-jest-tests",
            "request": "launch",
            "args": [
                "${fileBasename}",
                "--runInBand",
                "--code-coverage=false"
            ],
            "cwd": "${workspaceFolder}",
            "console": "integratedTerminal",
            "smartStep": true,
            "internalConsoleOptions": "neverOpen",
            "program": "${workspaceFolder}/node_modules/jest/bin/jest",
            "skipFiles": [
                "node_modules/**/*.js",
                "<node_internals>/**"
            ],
            "runtimeArgs": [
                "--harmony",
                "--no-deprecation"
            ],
            "sourceMaps": true
        },
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "console": "integratedTerminal",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "program": "${workspaceFolder}/lib/index.js",
            "args": [],
            "preLaunchTask": "tsc: build - tsconfig.json",
            "outFiles": [
                "${workspaceFolder}/lib/**/*.js"
            ],
            "disableOptimisticBPs": true,
        }
    ]
}