Hi,
While working on #468 I noticed this line of code
esModule: tsconfigJSON ? tsconfigJSON.esModuleInterop : false,
But esModuleInterop is a compiler option so I guess it should be
esModule: Boolean(tsconfigJSON?.compilerOptions?.esModuleInterop)
I can create a PR to fix this I just want to be sure that I'm not missing something here...