TypeScript Issue with Atom Types in React Native App Using pnpm
effect + atom-react on a RN app, im using pnpm and running into this classic TS issue with Atom on the frontendwondering if this is by design, or perhaps the lib could re-export some of these types to avoid this issue, FWIW, my i believe my type error is related to
Atom.Family typeI do have some hacky fixes that work , such as importing the
Atom type in the module where the error occurs - which allows TS to see the typesuch as :
import { type Atom as _Atom, useAtom } from "@effect-atom/atom-react";thanks for the consideration!

