Files
vercel__chat/turbo.json
T
Hayden Bleasel e970a6939b Upgrade Biome configuration to use Ultracite preset (#81)
* Upgrade Biome to Ultracite

* Remove package commands

* Update biome.jsonc

* Update biome.jsonc

* Initial fixes

* Update biome.jsonc

* Remaining fixes

* Update pnpm-lock.yaml

* Fix commands

* Update knip.json

* Merge Claude files

* Fix skipped test

* Misc fixes
2026-02-20 22:01:10 -08:00

38 lines
747 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NODE_ENV",
"SLACK_BOT_TOKEN",
"SLACK_SIGNING_SECRET",
"TEAMS_APP_ID",
"TEAMS_APP_PASSWORD",
"TEAMS_APP_TENANT_ID",
"GOOGLE_CHAT_CREDENTIALS",
"GOOGLE_CHAT_PUBSUB_TOPIC",
"GOOGLE_CHAT_IMPERSONATE_USER",
"BOT_USERNAME",
"REDIS_URL"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "docs/**", ".next/**", "!.next/cache/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["build"],
"outputs": []
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": []
},
"clean": {
"cache": false
}
}
}