just/.vscode/launch.json

43 строки
1.2 KiB
JSON

{
// 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": [
{
"name": "Debug current package tests",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/scripts/debugTests.js",
"cwd": "${fileDirname}",
"stopOnEntry": false,
"args": ["--watchAll"],
"runtimeExecutable": null,
"runtimeArgs": ["--nolazy", "--inspect"],
"env": {
"NODE_ENV": "development"
},
"sourceMaps": true,
"outputCapture": "std",
"console": "integratedTerminal"
},
{
"name": "Debug current open test",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/scripts/debugTests.js",
"cwd": "${fileDirname}",
"stopOnEntry": false,
"args": ["${fileBasenameNoExtension}"],
"runtimeExecutable": null,
"runtimeArgs": ["--nolazy", "--inspect"],
"env": {
"NODE_ENV": "development"
},
"sourceMaps": true,
"outputCapture": "std",
"console": "integratedTerminal"
}
]
}