/ .vscode / launch.json
launch.json
 1  {
 2    "configurations": [
 3      {
 4        "name": "Launch via NPM",
 5        "request": "launch",
 6        "runtimeArgs": ["run-script", "start:debug"],
 7        "runtimeExecutable": "npm",
 8        "skipFiles": ["<node_internals>/**"],
 9        "type": "node",
10        "cwd": "${workspaceFolder}/lionsmane"
11      }
12    ]
13  }