{ "$schema": "https://turbo.build/schema.json", "globalDependencies": [".env"], "tasks": { "dev": { "dependsOn": ["^build"], "cache": false, "persistent": true }, "build": { "dependsOn": ["^build"], "outputs": [".next/**", "!.next/cache/**", "build/**", "dist/**"] }, "test": { "dependsOn": ["build"], "inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"] }, "lint": { "inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"] } } }