aspnetcore/.vscode/launch.json

31 lines
1.0 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Node - Attach by Process ID",
"processId": "${command:PickProcess}"
},
{
"type": "node",
"request": "launch",
"name": "Jest - All",
"program": "${workspaceFolder}/clients/ts/node_modules/jest/bin/jest",
"cwd": "${workspaceFolder}/clients/ts",
"args": ["--runInBand"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Jest - Current File",
"program": "${workspaceFolder}/clients/ts/node_modules/jest/bin/jest",
"cwd": "${workspaceFolder}/clients/ts",
"args": ["${relativeFile}"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}