File: launch.json

package info (click to toggle)
node-re2 1.21.4%2B~cs2.13.13-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 964 kB
  • sloc: javascript: 5,558; cpp: 2,019; makefile: 14; sh: 9
file content (17 lines) | stat: -rw-r--r-- 505 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    {
      "type": "lldb",
      "request": "launch",
      "name": "Debug tests",
      "preLaunchTask": "npm: build:dev",
      "program": "${env:NVM_BIN}/node",
      "args": ["${workspaceFolder}/tests/tests.js"],
      "cwd": "${workspaceFolder}"
    }
  ]
}