{ "$schema": "https://turbo.build/schema.json", "globalDependencies": ["**/.env.*local"], "globalEnv": ["OPENAI_API_KEY"], "pipeline": { "build": { "dependsOn": ["^build"], "outputs": ["dist/**", ".next/**", "!.next/cache/**"] }, "test": { "dependsOn": ["^build"], "outputs": ["coverage/**", "!.next/**", "!.next/cache/**"] }, "lint": {}, "check-types": { "dependsOn": ["^build"] }, "dev": { "dependsOn": ["^build"], "cache": false, "persistent": true }, "clean": { "cache": false } } }