aboutsummaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 15f4da5137dcb1f1b2424588e16e7589ab549dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch via NPM",
            "request": "launch",
            "runtimeArgs": [
                "run",
                "test:unit",
                "--",
                // "test/text-source-range.test.js" // Replace and uncomment this line to run a single test file
            ],
            "runtimeExecutable": "npm",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "type": "node"
        }
    ]
}