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