summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
blob: fe4c94fa555a9d57917be365f63d735f7d75ae61 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "ts-node",
      "type": "node",
      "request": "launch",
      "args": [
        "src/index.ts"
      ],
      "runtimeArgs": [
        "-r",
        "ts-node/register"
      ],
      "env": {
        "MASTODON_TOKEN": "-mPmNM7D-BOmWt2_VVUODTCSKk9sLG7BY8zOK-FFRMc",
        "MISSKEY_TOKEN": "HGwt6ZGuZ7v6ztV3C0RMCwDYFuhhN6sg"
      },
      "cwd": "${workspaceRoot}",
      "protocol": "inspector",
      "internalConsoleOptions": "openOnSessionStart"
    }
  ]
}