aboutsummaryrefslogtreecommitdiff
path: root/jb-ui/.vscode/launch.json
blob: 1feeaca763677c8a4f65cd2276184ea1127f2527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "React: James Billings dev",
      "type": "node",
      "request": "launch",
      "runtimeExecutable": "/root/.local/share/pnpm/pnpm",
      "runtimeArgs": [
        "run",
        "dev"
      ],
      "autoAttachChildProcesses": true
    },
    {
      "name": "React: Launch Chrome",
      "type": "chrome",
      "request": "launch",
      "url": "http://localhost:5173",
      "webRoot": "${workspaceFolder}/src",
      "sourceMaps": true,
      "preLaunchTask": "npm: dev"
    },
    {
      "name": "React: Attach to Chrome",
      "type": "chrome",
      "request": "attach",
      "port": 9222,
      "url": "http://localhost:5173",
      "webRoot": "${workspaceFolder}/src"
    },
    {
      "name": "Jest: Run Tests",
      "type": "node",
      "request": "launch",
      "runtimeExecutable": "/root/.local/share/pnpm/pnpm",
      "runtimeArgs": [
        "test",
        "--runInBand"
      ],
      "console": "integratedTerminal",
      "internalConsoleOptions": "neverOpen"
    }
  ]
}