{ "$schema": "https://turbo.build/schema.json", "globalDependencies": ["tsconfig.json", "tsconfig.base.json"], "globalEnv": ["MULTICA_API_URL"], "tasks": { "build": { "dependsOn": ["^build"], "inputs": ["src/**", "package.json", "tsconfig.json"], "outputs": ["dist/**"] }, "dev": { "dependsOn": ["^build"], "cache": false, "persistent": true }, "typecheck": { "dependsOn": ["^build"], "inputs": ["src/**", "package.json", "tsconfig.json"], "outputs": [] }, "test": { "dependsOn": ["^build"], "inputs": ["src/**", "package.json", "tsconfig.json", "vitest.config.*"], "outputs": [] }, "lint": { "inputs": ["src/**", "package.json", "eslint.config.*", ".eslintrc.*"], "outputs": [] } } }