I have an application that contains libraries generated with emscripten. I am compiling them using the flags:
-s MODULARIZE=1 -s EXPORT_NAME=\"'SomeModuleName'\"
However, the library FS is no longer available. When I was compiling without the flags, I could use the library FS in any other script.
Is it possible to export FS in my module?