{ "$schema": "https://turborepo.com/schema.json", "tasks": { "build": { "dependsOn": ["^build"], "inputs": ["$TURBO_DEFAULT$", ".env*"], "outputs": ["dist/**"] }, "test": { "outputs": ["coverage/**"], "dependsOn": [] }, "lint": { "dependsOn": ["^build"] }, "dev": { "dependsOn": ["^build"], "cache": false, "persistent": true }, "clean": { "cache": false }, "watch": { "cache": false, "outputs": [] } } }