Last active
July 4, 2017 14:54
-
-
Save koji/3122f21b67224ec3730ad77a2be2afad to your computer and use it in GitHub Desktop.
launch.json for Nativescript
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
```json | |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch on iOS Emulator", | |
"type": "nativescript", | |
"platform": "ios", | |
"request": "launch", | |
"appRoot": "${workspaceRoot}", | |
"sourceMaps": true, | |
"diagnosticLogging": false, | |
"emulator": true | |
}, | |
{ | |
"name": "Attach on iOS Emulator", | |
"type": "nativescript", | |
"platform": "ios", | |
"request": "attach", | |
"appRoot": "${workspaceRoot}", | |
"sourceMaps": true, | |
"diagnosticLogging": false, | |
"emulator": true | |
}, | |
{ | |
"name": "Launch on iOS", | |
"type": "nativescript", | |
"request": "launch", | |
"platform": "ios", | |
"appRoot": "${workspaceRoot}", | |
"sourceMaps": true, | |
"watch": true | |
}, | |
{ | |
"name": "Attach on iOS", | |
"type": "nativescript", | |
"request": "attach", | |
"platform": "ios", | |
"appRoot": "${workspaceRoot}", | |
"sourceMaps": true, | |
"watch": false | |
}, | |
{ | |
"name": "Launch on Android", | |
"type": "nativescript", | |
"request": "launch", | |
"platform": "android", | |
"appRoot": "${workspaceRoot}", | |
"sourceMaps": true, | |
"watch": true | |
}, | |
{ | |
"name": "Attach on Android", | |
"type": "nativescript", | |
"request": "attach", | |
"platform": "android", | |
"appRoot": "${workspaceRoot}", | |
"sourceMaps": true, | |
"watch": false | |
} | |
] | |
} | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment