123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- {
- // 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}"
- }
- ]
- }
|