{ "$schema": "https://turbo.build/schema.json", "remoteCache": {}, "tasks": { "prisma:generate": { "cache": false }, "build": { "dependsOn": ["^build", "prisma:generate"], "outputs": ["dist/**", ".next/**", "!.next/cache/**"] }, "dev": { "cache": false, "persistent": true }, "lint": { "dependsOn": ["^build"], "outputs": [] }, "lint:fix": { "outputs": [] }, "test": { "dependsOn": ["^build"], "outputs": ["coverage/**"] }, "test:watch": { "cache": false, "persistent": true }, "test:coverage": { "dependsOn": ["^build"], "outputs": ["coverage/**"] }, "typecheck": { "dependsOn": ["^build"], "outputs": [] }, "clean": { "cache": false } } }