Add vscode configuration for debugging

I didn't end up using this but might in the future.
This commit is contained in:
Brandon Presley 2022-12-03 22:14:01 +13:00
parent b14d20f1f4
commit 2aa8073856
1 changed files with 12 additions and 0 deletions

12
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,12 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Android Hermes - Experimental",
"request": "launch",
"type": "reactnativedirect",
"cwd": "${workspaceFolder}",
"platform": "android"
}
]
}