{
    // 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": [
        {
            "request": "launch",
            "name": "CLI:waiting",
            "type": "node",
            "program": "${workspaceFolder}/cli/waiting.ts",
            "cwd": "${workspaceFolder}",
            "runtimeExecutable": "/home/harry/.cargo/bin/deno",
            "runtimeArgs": [
                "run",
                "--inspect-wait",
                "--allow-all"
            ],
            "attachSimplePort": 9229
        },
        {
            "request": "launch",
            "name": "CLI:combinators",
            "type": "node",
            "program": "${workspaceFolder}/cli/combinators.ts",
            "cwd": "${workspaceFolder}",
            "runtimeExecutable": "/home/harry/.cargo/bin/deno",
            "runtimeArgs": [
                "run",
                "--inspect-wait",
                "--allow-all"
            ],
            "attachSimplePort": 9229
        }

    ]
}