microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
test/SampleApplication/.vscode/launch.json
28lines · 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 | "runtimeArgs": [ "--nolazy" ], |
| 11 | "cwd": "${workspaceRoot}", |
| 12 | "sourceMaps": true, |
| 13 | "outDir": "${workspaceRoot}/.vscode/" |
| 14 | }, |
| 15 | { |
| 16 | "name": "Debug iOS", |
| 17 | "program": "${workspaceRoot}/.vscode/launchReactNative.js", |
| 18 | "type": "reactnative", |
| 19 | "request": "launch", |
| 20 | "platform": "ios", |
| 21 | "target": "iPhone 5s", |
| 22 | "runtimeArgs": [ "--nolazy" ], |
| 23 | "cwd": "${workspaceRoot}", |
| 24 | "sourceMaps": true, |
| 25 | "outDir": "${workspaceRoot}/.vscode/.react/" |
| 26 | } |
| 27 | ] |
| 28 | } |