From 2aa807385616853f28cef661b061af9cdb18c96a Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Sat, 3 Dec 2022 22:14:01 +1300 Subject: [PATCH] Add vscode configuration for debugging I didn't end up using this but might in the future. --- .vscode/launch.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..8e8a4e9 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,12 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Debug Android Hermes - Experimental", + "request": "launch", + "type": "reactnativedirect", + "cwd": "${workspaceFolder}", + "platform": "android" + } + ] +}