Closed nickmessing closed 2 months ago
Some tools (like vite) have higher priority on exports field. For some reason in my setup vitest was picking CJS build even if it was imported, having an exports field solves the issue in our case.
vite
exports
vitest
import
Some tools (like
vite
) have higher priority onexports
field. For some reason in my setupvitest
was picking CJS build even if it wasimport
ed, having anexports
field solves the issue in our case.