Quick question for a given use case:
I use “rescript-js” using bsc-flags
"bsc-flags": [
"-open Belt",
"-open ReScriptJs"
],
This is totally fine for me until I started to use rescript-relay
which need at some point Js.Exn
(currently missing from rescript-js).
So I was wondering: can I keep this global open ReScriptJs
and “close” it somehow in a given file?
Or reopen the “original Js” module ?
Thanks for your tips, have a nice day