{
    // 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": [
        {
            "type": "node",
            "request": "launch",
            "name": "Debug Example Tests",
            "program": "${workspaceRoot}/example/node_modules/jest/bin/jest.js",
            "console": "externalTerminal",
            "args": [
                "--runInBand",
                "--no-cache"
            ],
            "cwd": "${workspaceFolder}/example",
            "protocol": "inspector",
            "internalConsoleOptions": "neverOpen"
        },
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Example",
            "program": "${workspaceRoot}/example/index.js",
            "console": "externalTerminal"
        },
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Oracle Example",
            "program": "${workspaceRoot}/example/index.js",
            "console": "externalTerminal",
            "env": {
                "USE_ORA": "1"                
            }
        },
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "program": "${workspaceRoot}/index.js"
        }
    ]
}