aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 1acb5ab4aafd759e99a8ac7ab03ae0c19137c800 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "version": "0.2.0",
    "configurations": [
      {
        "name": "Deno",
        "type": "node",
        "request": "launch",
        "cwd": "${workspaceFolder}",
        "runtimeExecutable": "deno",
        "runtimeArgs": ["run", "--inspect", "-A", "${file}"],
        "port": 9229
      }
    ]
  }