aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: a334a1da529ca1e809b3ae8ca9ec2630fdb8d932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "npm start",
      "request": "launch",
      "runtimeArgs": ["start"],
      "runtimeExecutable": "npm",
      "type": "node"
    },
    {
      "name": "npm run build",
      "request": "launch",
      "runtimeArgs": ["run", "build"],
      "runtimeExecutable": "npm",
      "type": "node"
    }
  ]
}