{ "$schema": "https://turborepo.com/schema.json", "tasks": { "build:dev": { "dependsOn": ["^build:dev"], "outputs": ["dist/**"] }, "dev": { "dependsOn": ["build:dev", "^build:dev"], "cache": false, "persistent": true }, "test": { "cache": false, "persistent": true }, "build": { "dependsOn": ["^build"], "outputs": ["dist/**"], "inputs": ["src/**", "Cargo.toml", "Cargo.lock", "package.json"] }, "clean": { "cache": false } } }