{ "$schema": "https://turbo.build/schema.json", "globalDependencies": ["**/.env.*local"], "pipeline": { "build": { "dependsOn": ["^build"], "outputs": ["dist/**", ".next/**", "!.next/cache/**"] }, "dev": { "cache": false, "persistent": true }, "start": { "dependsOn": ["build"] }, "test": { "dependsOn": ["build"], "outputs": ["coverage/**"] }, "test:watch": { "cache": false, "persistent": true }, "lint": { "outputs": [] }, "lint:fix": { "outputs": [] }, "typecheck": { "dependsOn": ["^build"], "outputs": [] }, "clean": { "cache": false } } }