From 299593dff110696e474b08fcc3cd3d46d6919d4f Mon Sep 17 00:00:00 2001 From: Ross Brodbeck Date: Mon, 11 May 2020 10:30:00 -0400 Subject: [PATCH] Add vscode debug settings --- .vscode/launch.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..6acf9bed --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug Jest Tests", + "type": "node", + "request": "launch", + "program": "${workspaceRoot}/node_modules/jest/bin/jest", + "args": [ + "-i" + ], + "preLaunchTask": "tsc: build - tsconfig.json", + "internalConsoleOptions": "openOnSessionStart", + "console": "integratedTerminal", + "outFiles": [ + "${workspaceRoot}/build/dist/**/*" + ] + } + ] +} \ No newline at end of file