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