Repositorio del curso CCOM4030 el semestre B91 del proyecto kilometro0

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "Run Android on device",
  9. "type": "cordova",
  10. "request": "launch",
  11. "platform": "android",
  12. "target": "device",
  13. "port": 9222,
  14. "sourceMaps": true,
  15. "cwd": "${workspaceFolder}",
  16. "ionicLiveReload": false
  17. },
  18. {
  19. "name": "Run iOS on device",
  20. "type": "cordova",
  21. "request": "launch",
  22. "platform": "ios",
  23. "target": "device",
  24. "port": 9220,
  25. "sourceMaps": true,
  26. "cwd": "${workspaceFolder}",
  27. "ionicLiveReload": false
  28. },
  29. {
  30. "name": "Attach to running android on device",
  31. "type": "cordova",
  32. "request": "attach",
  33. "platform": "android",
  34. "target": "device",
  35. "port": 9222,
  36. "sourceMaps": true,
  37. "cwd": "${workspaceFolder}"
  38. },
  39. {
  40. "name": "Attach to running iOS on device",
  41. "type": "cordova",
  42. "request": "attach",
  43. "platform": "ios",
  44. "target": "device",
  45. "port": 9220,
  46. "sourceMaps": true,
  47. "cwd": "${workspaceFolder}"
  48. },
  49. {
  50. "name": "Run Android on emulator",
  51. "type": "cordova",
  52. "request": "launch",
  53. "platform": "android",
  54. "target": "emulator",
  55. "port": 9222,
  56. "sourceMaps": true,
  57. "cwd": "${workspaceFolder}",
  58. "ionicLiveReload": false
  59. },
  60. {
  61. "name": "Attach to running android on emulator",
  62. "type": "cordova",
  63. "request": "attach",
  64. "platform": "android",
  65. "target": "emulator",
  66. "port": 9222,
  67. "sourceMaps": true,
  68. "cwd": "${workspaceFolder}"
  69. },
  70. {
  71. "name": "Serve to the browser (ionic serve)",
  72. "type": "cordova",
  73. "request": "launch",
  74. "platform": "serve",
  75. "cwd": "${workspaceFolder}",
  76. "devServerAddress": "localhost",
  77. "sourceMaps": true,
  78. "ionicLiveReload": true
  79. },
  80. {
  81. "name": "Simulate Android in browser",
  82. "type": "cordova",
  83. "request": "launch",
  84. "platform": "android",
  85. "target": "chrome",
  86. "simulatePort": 8000,
  87. "livereload": true,
  88. "sourceMaps": true,
  89. "cwd": "${workspaceFolder}"
  90. },
  91. {
  92. "name": "Simulate iOS in browser",
  93. "type": "cordova",
  94. "request": "launch",
  95. "platform": "ios",
  96. "target": "chrome",
  97. "simulatePort": 8000,
  98. "livereload": true,
  99. "sourceMaps": true,
  100. "cwd": "${workspaceFolder}"
  101. },
  102. {
  103. "name": "Run Browser",
  104. "type": "cordova",
  105. "request": "launch",
  106. "platform": "browser",
  107. "target": "chrome",
  108. "simulatePort": 8000,
  109. "livereload": true,
  110. "sourceMaps": true,
  111. "cwd": "${workspaceFolder}"
  112. }
  113. ]
  114. }