{ "$schema": "https://turbo.build/schema.json", "ui": "tui", "tasks": { "build": { "dependsOn": ["^build"], "inputs": ["$TURBO_DEFAULT$", ".env*"], "outputs": [".next/**", "!.next/cache/**", "dist/**", "build/**"] }, "check-types": { "dependsOn": ["^check-types"] }, "lint": { "dependsOn": ["^lint"] }, "test": { "dependsOn": ["^test"] }, "prepare": { "dependsOn": ["^prepare"] }, "dev": { "cache": false, "persistent": true } } }