microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.1.3

Branches

Tags

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

Clone

HTTPS

Download ZIP

SampleApplication/.vscode/launch.json

26lines · modeblame

514f9fd6digeff10 years ago1{
2"version": "0.2.0",
3"configurations": [
4{
5"name": "Debug Android",
efd8fbffdigeff10 years ago6"program": "${workspaceRoot}/.vscode/launchReactNative.js",
65bb0c85Jimmy Thomson10 years ago7"type": "reactnative",
514f9fd6digeff10 years ago8"request": "launch",
6501d0f1Jimmy Thomson10 years ago9"platform": "android",
3d69a9b4digeff10 years ago10"internalDebuggerPort": 9090,
514f9fd6digeff10 years ago11"sourceMaps": true,
3d69a9b4digeff10 years ago12"outDir": "${workspaceRoot}/.vscode/.react"
514f9fd6digeff10 years ago13},
14{
15"name": "Debug iOS",
efd8fbffdigeff10 years ago16"program": "${workspaceRoot}/.vscode/launchReactNative.js",
65bb0c85Jimmy Thomson10 years ago17"type": "reactnative",
514f9fd6digeff10 years ago18"request": "launch",
6501d0f1Jimmy Thomson10 years ago19"platform": "ios",
3d69a9b4digeff10 years ago20"target": "iPhone 5s",
21"internalDebuggerPort": 9090,
514f9fd6digeff10 years ago22"sourceMaps": true,
3d69a9b4digeff10 years ago23"outDir": "${workspaceRoot}/.vscode/.react"
514f9fd6digeff10 years ago24}
25]
26}