{ "$schema": "https://turbo.build/schema.json", "globalDependencies": [ "**/.env.*local", "tsconfig.json" ], "tasks": { "build": { "dependsOn": ["^build"], "outputs": ["dist/**", ".next/**", "!.next/cache/**", "storybook-static/**"] }, "dev": { "cache": false, "persistent": true }, "lint": { "dependsOn": ["^build"] }, "type-check": { "dependsOn": ["^build"], "outputs": [] }, "test": { "dependsOn": ["^build"], "outputs": ["coverage/**"] }, "test:ui": { "cache": false, "persistent": true }, "clean": { "cache": false } } }