Created
February 17, 2019 10:50
-
-
Save msuvojit/03af3d8307834dc8a98b87dedf3c3691 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Debug in Exponent", | |
| "program": "${workspaceRoot}/.vscode/launchReactNative.js", | |
| "type": "reactnative", | |
| "request": "launch", | |
| "platform": "exponent", | |
| "sourceMaps": true, | |
| "outDir": "${workspaceRoot}/.vscode/.react" | |
| }, | |
| { | |
| "name": "Debug Android", | |
| "program": "${workspaceRoot}/.vscode/launchReactNative.js", | |
| "type": "reactnative", | |
| "request": "launch", | |
| "platform": "android", | |
| "sourceMaps": true, | |
| "outDir": "${workspaceRoot}/.vscode/.react" | |
| }, | |
| { | |
| "name": "Debug iOS", | |
| "program": "${workspaceRoot}/.vscode/launchReactNative.js", | |
| "type": "reactnative", | |
| "request": "launch", | |
| "platform": "ios", | |
| "sourceMaps": true, | |
| "outDir": "${workspaceRoot}/.vscode/.react" | |
| }, | |
| { | |
| "name": "Attach to packager", | |
| "program": "${workspaceRoot}/.vscode/launchReactNative.js", | |
| "type": "reactnative", | |
| "request": "attach", | |
| "sourceMaps": true, | |
| "outDir": "${workspaceRoot}/.vscode/.react" | |
| }, | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment