{
    // 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",
            "request": "launch",
            "name": "Run Tests",
            "args": ["${workspaceFolder}/testing.ts"],
            "runtimeArgs": ["-r", "ts-node/register"]
            // "preLaunchTask": "tsc: build - tsconfig.json",
            // "outFiles": [
            //     "${workspaceFolder}/dist/**/*.js"
            // ]
        },
        {
            "type": "node",
            "request": "launch",
            "name": "Export data",
            "args": ["${workspaceFolder}/src/StaticExporter.ts"],
            "console": "integratedTerminal",
            "runtimeArgs": ["-r", "ts-node/register"],
            "cwd": "${workspaceFolder}",
            "env": {
                "EZD_ORG": "test-org",
                "EZD_TOKEN": "03b43cf46a9a4853be8b13e302e3d920",
                "ROOT_MAP_IDx": "0fe19570-a27b-11e9-88a2-88e9fe5d4f23",
                "ROOT_MAP_ID": "66d48d50-a66e-11e9-a1df-88e9fe5d4f23",
                "NODE_PATH": "${workspaceFolder}"

            }
        }
    ]
}