Created
February 21, 2019 08:26
-
-
Save hieumoscow/d54beb9987fbea8675d4c7b9fa500a1b to your computer and use it in GitHub Desktop.
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Run Android on device", | |
"type": "cordova", | |
"request": "launch", | |
"platform": "android", | |
"target": "device", | |
"port": 9222, | |
"sourceMaps": true, | |
"cwd": "${workspaceFolder}", | |
"ionicLiveReload": false | |
}, | |
{ | |
"name": "Run iOS on device", | |
"type": "cordova", | |
"request": "launch", | |
"platform": "ios", | |
"target": "device", | |
"port": 9220, | |
"sourceMaps": true, | |
"cwd": "${workspaceFolder}", | |
"ionicLiveReload": false | |
}, | |
{ | |
"name": "Attach to running android on device", | |
"type": "cordova", | |
"request": "attach", | |
"platform": "android", | |
"target": "device", | |
"port": 9222, | |
"sourceMaps": true, | |
"cwd": "${workspaceFolder}" | |
}, | |
{ | |
"name": "Attach to running iOS on device", | |
"type": "cordova", | |
"request": "attach", | |
"platform": "ios", | |
"target": "device", | |
"port": 9220, | |
"sourceMaps": true, | |
"cwd": "${workspaceFolder}" | |
}, | |
{ | |
"name": "Run Android on emulator", | |
"type": "cordova", | |
"request": "launch", | |
"platform": "android", | |
"target": "emulator", | |
"port": 9222, | |
"sourceMaps": true, | |
"cwd": "${workspaceFolder}", | |
"ionicLiveReload": false | |
}, | |
{ | |
"name": "Attach to running android on emulator", | |
"type": "cordova", | |
"request": "attach", | |
"platform": "android", | |
"target": "emulator", | |
"port": 9222, | |
"sourceMaps": true, | |
"cwd": "${workspaceFolder}" | |
}, | |
{ | |
"name": "Serve to the browser (ionic serve)", | |
"type": "cordova", | |
"request": "launch", | |
"platform": "serve", | |
"cwd": "${workspaceFolder}", | |
"devServerAddress": "localhost", | |
"sourceMaps": true, | |
"ionicLiveReload": true | |
}, | |
{ | |
"name": "Simulate Android in browser", | |
"type": "cordova", | |
"request": "launch", | |
"platform": "android", | |
"target": "chrome", | |
"simulatePort": 8000, | |
"livereload": true, | |
"sourceMaps": true, | |
"cwd": "${workspaceFolder}" | |
}, | |
{ | |
"name": "Simulate iOS in browser", | |
"type": "cordova", | |
"request": "launch", | |
"platform": "ios", | |
"target": "chrome", | |
"simulatePort": 8000, | |
"livereload": true, | |
"sourceMaps": true, | |
"cwd": "${workspaceFolder}" | |
}, | |
{ | |
"name": "Run Browser", | |
"type": "cordova", | |
"request": "launch", | |
"platform": "browser", | |
"target": "chrome", | |
"simulatePort": 8000, | |
"livereload": true, | |
"sourceMaps": true, | |
"cwd": "${workspaceFolder}" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment