{ "$schema": "https://turbo.build/schema.json", "globalDependencies": ["tsconfig.base.json"], "tasks": { "build": { "dependsOn": ["^build"], "inputs": ["src/**", "package.json", "tsconfig.json"], "outputs": ["dist/**", ".next/**"] }, "dev": { "dependsOn": ["^build"], "cache": false, "persistent": true }, "typecheck": { "dependsOn": ["^build"], "inputs": ["src/**", "package.json", "tsconfig.json"] }, "test": { "dependsOn": ["^build"], "inputs": ["src/**", "package.json", "tsconfig.json", "vitest.config.*"] }, "lint": { "inputs": ["src/**", "package.json"] }, "clean": { "cache": false } } }