settings.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "launch": {
  3. "configurations": []
  4. },
  5. "terminalButtons.buttons": [
  6. {
  7. "text": "🚀 DEV",
  8. "tooltip": "启动微信小程序开发模式",
  9. "command": "npm run dev:mp-weixin",
  10. "color": "#42b983"
  11. },
  12. {
  13. "text": "📦 BUILD",
  14. "tooltip": "生产环境构建",
  15. "command": "npm run build:mp-weixin",
  16. "color": "#ffa500"
  17. }
  18. ],
  19. "npmScripts.sideBar": true,
  20. "MicroPython.executeButton": [
  21. {
  22. "text": "▶",
  23. "tooltip": "运行",
  24. "alignment": "left",
  25. "command": "extension.executeFile",
  26. "priority": 3.5
  27. }
  28. ],
  29. "MicroPython.syncButton": [
  30. {
  31. "text": "$(sync)",
  32. "tooltip": "同步",
  33. "alignment": "left",
  34. "command": "extension.execute",
  35. "priority": 4
  36. }
  37. ],
  38. "volar.takeOverMode.enabled": true,
  39. "volar.features.interpolationService": true,
  40. "volar.features.semanticTokens": true,
  41. "volar.jsx": "preserve",
  42. "javascript.suggestionActions.enabled": true,
  43. "editor.quickSuggestions": {
  44. "strings": true
  45. }
  46. }