turbo.json 524 B

1234567891011121314151617181920212223242526
  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. }
  26. }