{ "$schema": "https://turbo.build/schema.json", "pipeline": { "build": { "dependsOn": [ "^test", "^build" ], "outputs": [ "dist/**" ] }, "lint": {}, "test": { "dependsOn": [ "build" ] }, "test:watch": { "persistent": true }, "dev": { "dependsOn": [ "^build" ], "cache": false, "persistent": true }, "preview": { "dependsOn": [ "^build", "build" ], "persistent": true } } }