{ "$schema": "https://turbo.build/schema.json", "globalDependencies": ["**/.env.*local"], "tasks": { "build": { "dependsOn": ["^build"], "outputs": ["dist/**", ".next/**", "!.next/cache/**"] }, "typecheck": { "dependsOn": ["^build"], "outputs": [] }, "lint": { "outputs": [] }, "test": { "dependsOn": ["^build"], "outputs": ["coverage/**"] }, "test:unit": { "dependsOn": ["^build"], "outputs": ["coverage/**"] }, "test:e2e": { "dependsOn": ["^build"], "outputs": ["../../test-output/**"], "cache": false }, "test:coverage": { "dependsOn": ["^build"], "outputs": ["coverage/**"] }, "preview": { "dependsOn": ["build"], "cache": false, "persistent": true }, "dev": { "cache": false, "persistent": true }, "clean": { "cache": false }, "validate": { "outputs": [], "cache": false }, "validate:security": { "dependsOn": ["^build"], "outputs": [], "cache": false } } }