You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: How to address the Exceeds the Maximum Length Problem in oRPC.
4
+
---
5
+
6
+
# Exceeds the Maximum Length Problem
7
+
8
+
```ts twoslash
9
+
// @error: The inferred type of this node exceeds the maximum length the compiler will serialize. An explicit type annotation is needed.
10
+
exportconst router = {
11
+
// many procedures here
12
+
}
13
+
```
14
+
15
+
Are you seeing this error? If so, congratulations! your project is now complex enough to encounter it!
16
+
17
+
## Why It Happens
18
+
19
+
This error is expected, not a bug. Typescript enforces this to keep your IDE suggestions fast. It appears when all three of these conditions are met:
20
+
21
+
1. Your project uses `"declaration": true` in `tsconfig.json`.
22
+
2. Your project is large or your types are very complex.
23
+
3. You export your router as a single, large object.
24
+
25
+
## How to Fix It
26
+
27
+
### 1. Disable `"declaration": true` in `tsconfig.json`
28
+
29
+
This is the simplest option, though it may not be ideal for your project.
30
+
31
+
### 2. Define the `.output` Type for Your Procedures
32
+
33
+
By explicitly specifying the `.output` or your `handler's return type`, you enable TypeScript to infer the output without parsing the handler's code. This approach can dramatically enhance both type-checking and IDE-suggestion speed.
34
+
35
+
:::tip
36
+
Use the [type](/docs/procedure#type-utility) utility if you just want to specify the output type without validating the output.
37
+
:::
38
+
39
+
### 3. Export the Router in Parts
40
+
41
+
Instead of exporting one large object on the server (with `"declaration": true`), export each router segment individually and merge them on the client (where `"declaration": false`):
Copy file name to clipboardexpand all lines: apps/content/docs/procedure.md
+4
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,10 @@ const example = os
37
37
38
38
oRPC supports [Zod](https://github.com/colinhacks/zod), [Valibot](https://github.com/fabian-hiller/valibot), [Arktype](https://github.com/arktypeio/arktype), and any other [Standard Schema](https://github.com/standard-schema/standard-schema?tab=readme-ov-file#what-schema-libraries-implement-the-spec) library for input and output validation.
39
39
40
+
::: tip
41
+
By explicitly specifying the `.output` or your `handler's return type`, you enable TypeScript to infer the output without parsing the handler's code. This approach can dramatically enhance both type-checking and IDE-suggestion speed.
42
+
:::
43
+
40
44
### `type` Utility
41
45
42
46
For simple use-case without external libraries, use oRPC’s built-in `type` utility. It takes a mapping function as its first argument:
0 commit comments