diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..176494bc6 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug Jest Tests", + "type": "node", + "request": "launch", + "port": 9230, + "runtimeArgs": [ + "--inspect-brk=9230", + "${workspaceRoot}/node_modules/.bin/jest", + "--runInBand", + "--watch" + ], + "runtimeExecutable": null + } + ] +}