{ "$schema": "https://turborepo.org/schema.json", // These root workspace files are reused in workspaces and may affect their build output "globalDependencies": [ ".eslintrc.js", ".prettierrc", "vite.config.default.ts", "tsconfig.json" ], "globalPassThroughEnv": ["PUPPETEER_HEADLESS", "DISABLE_WORKER_INLINING"], "tasks": { "prepublish": { "dependsOn": ["^prepublish", "//#references:update"], "outputs": [ "lib/**", "es/**", "dist/**", "typings/**", ".svelte-kit/**", "types/**" ] }, "test": { "dependsOn": ["^prepublish"] }, "test:watch": { "persistent": true, "cache": false }, "test:update": { "dependsOn": ["^prepublish"] }, "dev": { "dependsOn": ["prepublish", "^prepublish"], "persistent": true, "cache": false }, "lint": {}, "check-types": { "dependsOn": ["^prepublish"] }, "//#references:update": { "inputs": ["packages/*/package.json", "packages/plugins/*/package.json"], "outputs": [ "packages/*/tsconfig.json", "packages/plugins/*/tsconfig.json" ] } } }