{ "$schema": "https://turborepo.com/schema.json", "tasks": { "build": { "dependsOn": ["^build"], "outputs": ["dist/**"] }, "check-types": { "dependsOn": ["^check-types"] }, "watch": { "dependsOn": ["^watch"] }, "dev": { "dependsOn": ["^watch"], "persistent": true, "cache": false }, "start": { "dependsOn": ["^build"], "persistent": true, "cache": false } } }