tasks.json 749 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "version": "0.1.0",
  3. "command": "egret",
  4. "isShellCommand": true,
  5. "suppressTaskName": true,
  6. "tasks": [
  7. {
  8. "taskName": "build",
  9. "showOutput": "always",
  10. "args": [
  11. "build",
  12. "-sourcemap"
  13. ],
  14. "problemMatcher": "$tsc"
  15. },
  16. {
  17. "taskName": "clean",
  18. "showOutput": "always",
  19. "args": [
  20. "build",
  21. "-e"
  22. ],
  23. "problemMatcher": "$tsc"
  24. },
  25. {
  26. "taskName": "publish",
  27. "showOutput": "always",
  28. "args": [
  29. "publish"
  30. ],
  31. "problemMatcher": "$tsc"
  32. }
  33. ]
  34. }