{ "$schema": "https://turborepo.com/schema.json", "ui": "tui", "tasks": { "build": { "dependsOn": ["^build"], "inputs": ["$TURBO_DEFAULT$", ".env*"], "outputs": [".next/**", "!.next/cache/**", "bin/**", "out/**"] }, "build:native": { "dependsOn": [], "inputs": ["Sources/**", "Package.swift", "main.swift", "scripts/**"], "outputs": ["bin/**"], "cache": true }, "lint": { "dependsOn": ["^lint"] }, "check-types": { "dependsOn": ["^check-types"] }, "dev": { "dependsOn": ["^build"], "cache": false, "persistent": true } } }