Helpers bundling

I have a helpers.ts file where I store some plain helper functions which I import and use throughout my Convex functions.
export async function myHelperFunction()


this file is getting big, 1k+ lines and counting. Is there any performance consideration on importing functions from a file like this?
Was this page helpful?