Files
puter/tsconfig.build.json
T
Daniel Salazar 79d4201f12 fix: rate limits, AI routing, and a type-check gate (#3529)
- declare rate + concurrency limits on every route and driver that lacked one
- add acquireConcurrent for websocket connections and the DAV mount
- bucket AI models by identity key only; keep resold duplicates of any vendor
- skip recently-failed provider routes; cap the fallback chain at 3 attempts
- let full-access access tokens bind a worker to an app their own user owns
- cache resolved subscriptions so tiered limits don't add a round trip
2026-08-10 19:09:47 -07:00

11 lines
279 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"strict": false,
// Emit-only: this build transpiles, it does not type check. Run the
// checker with `tsc -p tsconfig.build.json --noCheck false --noEmit`.
"noCheck": true,
"noImplicitAny": true
}
}