{ "$schema": "https://turborepo.dev/schema.json", "tasks": { "build": { "dependsOn": ["^build"], "inputs": ["src/**", "lexicons/**", "scripts/**", "package.json", "tsconfig.json"], "outputs": ["dist/**"] }, "dev": { "dependsOn": ["^build"], "cache": false, "persistent": true }, "lint": { "dependsOn": ["^build"] }, "lint:fix": { "cache": false }, "test": { "dependsOn": ["^build"], "env": ["DATABASE_URL"] }, "clean": { "cache": false } } }