turbo.json 628 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "$schema": "https://turborepo.com/schema.json",
  3. "ui": "tui",
  4. "tasks": {
  5. "build": {
  6. "dependsOn": ["^build"],
  7. "inputs": ["$TURBO_DEFAULT$", ".env*"],
  8. "outputs": [".next/**", "!.next/cache/**", "dist/**"]
  9. },
  10. "lint": {
  11. "dependsOn": ["^lint"]
  12. },
  13. "check-types": {
  14. "dependsOn": ["^check-types"]
  15. },
  16. "dev": {
  17. "cache": false,
  18. "persistent": true
  19. },
  20. "start": {
  21. "dependsOn": ["build"],
  22. "cache": false,
  23. "persistent": true
  24. },
  25. "start:prod": {
  26. "dependsOn": ["build"],
  27. "cache": false,
  28. "persistent": true
  29. }
  30. }
  31. }