{ "$schema": "https://turbo.build/schema.json", "ui": "stream", "tasks": { "build": { "dependsOn": ["^build"], "outputs": ["dist/**", ".next/**", "!.next/cache/**"], "outputLogs": "new-only", "inputs": ["$TURBO_DEFAULT$", ".env", ".env.*"] }, "clean": { "cache": false, "dependsOn": ["^clean"] }, "test": { "dependsOn": ["test:format", "test:lint", "test:typecheck", "test:unit"] }, "test:lint": { "dependsOn": ["//#test:lint", "^test:lint"], "outputLogs": "errors-only" }, "test:typecheck": { "dependsOn": ["^test:typecheck"], "outputLogs": "errors-only" }, "test:unit": { "dependsOn": ["^test:unit"], "outputLogs": "errors-only" }, "test:format": { "dependsOn": ["//#test:format", "^test:format"] }, "//#test:format": {}, "//#test:lint": {}, "dev": { "cache": false, "persistent": true } } }