I'm experimenting only opening a subset of `Pervasives` so that none of OCaml's style leak to the user. https://github.com/bloodyowl/rescript-js/blob/main/src/ReScriptJs__Pervasives.res Using the following bsc-flags, it seems like `Pervasives` isn't conditioned to the absence of `-nopervasives` flag. ```json [ "-open Belt", "-open ReScriptJs__JsWithPervasives", "-nopervasives" ] ```