launch.json 705 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "version" : "1.0",
  3. "configurations" : [
  4. {
  5. "app" : {
  6. "launchtype" : "remote"
  7. },
  8. "default" : {
  9. "launchtype" : "local"
  10. },
  11. "h5" : {
  12. "launchtype" : "local"
  13. },
  14. "mp-weixin" : {
  15. "launchtype" : "local"
  16. },
  17. "provider" : "alipay",
  18. "type" : "uniCloud"
  19. },
  20. {
  21. "customPlaygroundType" : "local",
  22. "playground" : "custom",
  23. "type" : "uni-app:app-android"
  24. },
  25. {
  26. "playground" : "standard",
  27. "type" : "uni-app:app-ios"
  28. }
  29. ]
  30. }