{ "$schema": "https://turbo.build/schema.json", "tasks": { "build": { "dependsOn": ["^build"], "outputs": ["dist/**"] }, "dev": { "cache": false, "persistent": true }, "test": { "dependsOn": ["build"], "inputs": ["src/**/*.ts", "test/**/*.ts"] }, "lint": { "inputs": ["src/**/*.ts"] }, "db:migrate": { "cache": false }, "db:seed": { "cache": false } } }