turbo.json 413 B

12345678910111213141516171819202122232425262728
  1. {
  2. "$schema": "https://turbo.build/schema.json",
  3. "tasks": {
  4. "build": {
  5. "dependsOn": [
  6. "^build"
  7. ],
  8. "outputs": [
  9. "dist/**"
  10. ]
  11. },
  12. "dev": {
  13. "cache": false,
  14. "persistent": false
  15. },
  16. "clean": {
  17. "dependsOn": [
  18. "^clean"
  19. ],
  20. "cache": false
  21. },
  22. "bundlewatch": {
  23. "dependsOn": [
  24. "^build"
  25. ]
  26. }
  27. }
  28. }