onfail without importing config in every file?
is this possible? I'm trying to combine ArkType usage with neverthrow (i'm new to both so maybe i'm doing it wrong), but it seems like I'd want to wrap type validation in
fromThrowable
and throw the error, otherwise i'll stray from their Result type and will end up with what is basically ArkType version of a result type.
from the docs i see i can config it to throw, but it seems a bit annoying to have to import the config along with type
everywhere i use it which is what the docs seem to suggest should be done. any way around this?4 Replies
You shouldn't need to import it everywhere, just import it once in your app entrypoint before you import arktype and it will work everywhere
it's not really clear what my app entry point is in some cases as i have a monorepo, but i'll try and see what happens, thank you
You just have to make sure that the configure code runs before the primary
arktype
entrypoint is imported, which generally should be doable at a least at a package level.
Otherwise you can use .assert
which behaves that way alwaysOh I see, I didn't know .assert would behave that same way. Yea I'll just do that, that's more explicit anyway