{ "$schema": "https://turbo.build/schema.json", "globalDependencies": [".env"], "globalEnv": [ "NODE_ENV", "DATABASE_URL", "REDIS_URL", "AUTH_SECRET", "AUTH_URL", "NEXT_PUBLIC_APP_URL" ], "tasks": { "build": { "dependsOn": ["^build"], "outputs": [".next/**", "!.next/cache/**", "dist/**"] }, "dev": { "cache": false, "persistent": true }, "lint": { "dependsOn": ["^build"] }, "typecheck": { "dependsOn": ["^build"] }, "test": { "dependsOn": ["^build"], "outputs": ["coverage/**"] }, "test:e2e": { "dependsOn": ["^build"], "cache": false } } }