{ "$schema": "https://turborepo.dev/schema.json", "globalEnv": ["CI", "DATABASE_URL", "PAYLOAD_SECRET", "NODE_ENV"], "tasks": { "build": { "dependsOn": ["^build"], "outputs": ["dist/**", ".next/**", "!.next/cache/**"] }, "dev": { "cache": false, "persistent": true }, "lint": { "dependsOn": ["^lint"] }, "test": { "dependsOn": ["^build"] }, "test:e2e": { "dependsOn": ["^build"], "cache": false }, "typecheck": { "dependsOn": ["^typecheck"] } } }