Is there a way for me to show TRPC how to serialize bigint? I'm turning BigInt into JSON by
BigInt.prototype.toJSON = function() {
return this.toString()
}
And now the issue is when TRPC and Zod validate the big int it fails because its a string.