turbo.json 347 B

12345678910111213141516171819
  1. {
  2. "$schema": "https://turbo.build/schema.json",
  3. "ui": "tui",
  4. "tasks": {
  5. "build": {
  6. "dependsOn": ["^build"],
  7. "inputs": ["$TURBO_DEFAULT$", ".env*"],
  8. "outputs": [".next/**", "!.next/cache/**"]
  9. },
  10. "lint": {
  11. "dependsOn": ["^lint"]
  12. },
  13. "dev": {
  14. "cache": true,
  15. "persistent": true
  16. }
  17. }
  18. }