{ "$schema": "https://turbo.build/schema.json", "globalDependencies": [ ".env", ".env.*", ".env.*local", "tsconfig.json", "tsconfig.*.json", "pnpm-lock.yaml" ], "tasks": { "build": { "dependsOn": ["^build"], "env": [ "NEXT_PUBLIC_API_URL", "NEXT_PUBLIC_*", "NODE_ENV" ], "outputs": [ ".next/**", "!.next/cache/**", "dist/**", "build/**" ] }, "dev": { "cache": false, "persistent": true }, "lint": { "dependsOn": ["^build"], "outputs": [] }, "typecheck": { "dependsOn": ["^build"], "outputs": [] }, "test": { "dependsOn": ["build"], "outputs": ["coverage/**"] }, "clean": { "cache": false } } }