i wanted to use `vite-plugin-dts` with `rollupTypes`, but it turned it is not as smart as rollup is and can't figure out how to extract commonly used types in separate chunks when there are multiple entrypoints.
which results in duplicate declarations.
which would be fine if i didn't ever use `unique symbol` or private fields (as they are typed nominally in typescript)
and it seems that my only options are either manually strip out any private fields from the resulting d.ts, or don't rollup types at all and just kinda deal with the 8712839 d.ts files in the tarball.
(and don't even get me started on the esm/cjs interop which forces me to copy d.ts files into d.cts because otherwise tsc complains)
god i hate this so much, jsr might actually be a blessing