microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.11.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

SampleApplication/.vscode/launch.json

24lines · 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 "sourceMaps": true,
11 "outDir": "${workspaceRoot}/.vscode/.react"
12 },
13 {
14 "name": "Debug iOS",
15 "program": "${workspaceRoot}/.vscode/launchReactNative.js",
16 "type": "reactnative",
17 "request": "launch",
18 "platform": "ios",
19 "target": "iPhone 5s",
20 "sourceMaps": true,
21 "outDir": "${workspaceRoot}/.vscode/.react"
22 }
23 ]
24}
25