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