React native – React-Native Expo project loads the same module twice, once as ts, once as js
I have an npm module called Body. (https://github.com/ouroboroscoding/body-js) It exports a single instance of an object. const body = new Body(); export default body; I have a second npm module, called Brain. (https://github.com/ouroboroscoding/brain-js) Brain requires the use of body, the…