microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
bb77358c8dc7ea46fae9d6aa601a11fde8eed0fd

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

SampleApplication/.vscode/launch.json

26lines · modecode

1{
2 "version": "0.2.0",
3 "configurations": [
4 {
5 "name": "Debug Android",
6 "program": "${workspaceRoot}/.vscode/launchReactNative.js",
7 "type": "reactnative",
8 "request": "launch",
9 "platform": "android",
10 "internalDebuggerPort": 9090,
11 "sourceMaps": true,
12 "outDir": "${workspaceRoot}/.vscode/.react"
13 },
14 {
15 "name": "Debug iOS",
16 "program": "${workspaceRoot}/.vscode/launchReactNative.js",
17 "type": "reactnative",
18 "request": "launch",
19 "platform": "ios",
20 "target": "iPhone 5s",
21 "internalDebuggerPort": 9090,
22 "sourceMaps": true,
23 "outDir": "${workspaceRoot}/.vscode/.react"
24 }
25 ]
26}