28 lines
736 B
JSON
28 lines
736 B
JSON
|
{
|
||
|
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
|
||
|
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
|
||
|
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Debug Android",
|
||
|
"cwd": "${workspaceFolder}",
|
||
|
"type": "reactnative",
|
||
|
"request": "launch",
|
||
|
"platform": "android",
|
||
|
"runArguments": [
|
||
|
"--verbose"
|
||
|
],
|
||
|
"env": {
|
||
|
"ANDROID_SDK_ROOT": "/opt/android-sdk"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "Debug iOS",
|
||
|
"cwd": "${workspaceFolder}",
|
||
|
"type": "reactnative",
|
||
|
"request": "launch",
|
||
|
"platform": "ios"
|
||
|
}
|
||
|
]
|
||
|
}
|