Skip to content

Commit d346384

Browse files
committed
fix: suppress TS2589 type recursion error in server route chain
1 parent 247a019 commit d346384

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/opencode/src/server/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export namespace Server {
7878
const app = new Hono()
7979
export const App: () => Hono = lazy(
8080
() =>
81-
// TODO: Break server.ts into smaller route files to fix type inference
81+
// @ts-ignore TS2589 - Type instantiation excessively deep. TODO: Break server.ts into smaller route files
8282
app
8383
.onError((err, c) => {
8484
log.error("failed", {

0 commit comments

Comments
 (0)