> nx run test:build:production
node_modules/@trpc/client/src/TRPCClientError.ts:42:18 - error TS4111: Property 'error' comes from an index signature, so it must be accessed with ['error'].
40 | return (
41 | isObject(obj) &&
> 42 | isObject(obj.error) &&
| ^
43 | typeof obj.error.code === 'number' &&
44 | typeof obj.error.message === 'string'
45 | );
...
> nx run test:build:production
node_modules/@trpc/client/src/TRPCClientError.ts:42:18 - error TS4111: Property 'error' comes from an index signature, so it must be accessed with ['error'].
40 | return (
41 | isObject(obj) &&
> 42 | isObject(obj.error) &&
| ^
43 | typeof obj.error.code === 'number' &&
44 | typeof obj.error.message === 'string'
45 | );
...