turbo.json 500 B

12345678910111213141516171819202122
  1. {
  2. "$schema": "https://turbo.build/schema.json",
  3. "globalDependencies": ["**/.env.*local"],
  4. "pipeline": {
  5. "build": {
  6. "dependsOn": ["^build"],
  7. "outputs": [".next/**", "!.next/cache/**"]
  8. },
  9. "deploy": {
  10. "dependsOn": ["build", "test", "lint"]
  11. },
  12. "test": {
  13. "dependsOn": ["build"],
  14. "inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
  15. },
  16. "lint": {},
  17. "dev": {
  18. "cache": false,
  19. "persistent": true
  20. }
  21. }
  22. }