{ "$schema": "https://turborepo.org/schema.json", "pipeline": { "build": { "outputs": [ "dist/**", ".next/**", "build/**", "api/**", "public/build/**", "storybook-static/**" ], "dependsOn": ["^build"] }, "test": { "outputs": ["coverage/**"], "dependsOn": [] }, "lint": { "dependsOn": ["^build"], "outputs": [] }, "tsc": { "cache": true }, "dev": { "cache": false }, "clean": { "cache": false } } }