setup-godot/.vscode/launch.json
Joanna May 41ce0e3de8
feat: allow dotnet to be specified (#21)
* feat: allow dotnet to be specified

* docs: update readme

* fix: optimize test workflow
2023-03-14 19:04:27 -05:00

19 lines
388 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Jest Tests",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
"args": [
"--runInBand",
"--no-cache",
"--watch"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
}
]
}