{ "$schema": "https://turbo.build/schema.json", "pipeline": { "build": { "outputs": [ ".next/**", "!.next/cache/**" ] }, "deploy": { "dependsOn": [ "build", "test", "lint" ] }, "db:push": {}, "db:studio": {}, "test": { "dependsOn": [ "build" ], "inputs": [ "src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx" ] }, "lint": {}, "type-check": {}, "dev": { "env": [ "NODE_ENV=development" ], "cache": false, "persistent": true } } }