draggable/.vscode/launch.json
2023-09-22 10:43:58 -07:00

17 lines
304 B
JSON

{
"version": "1.0.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest Tests",
"program": "${workspaceRoot}/node_modules/.bin/jest",
"console": "integratedTerminal",
"args": [
"-i",
"--watchAll"
],
}
]
}