Hi, While working on #468 I noticed [this line of code](https://github.com/jaredpalmer/tsdx/blob/master/src/createRollupConfig.ts#L92) ```js esModule: tsconfigJSON ? tsconfigJSON.esModuleInterop : false, ``` But `esModuleInterop` is a compiler option so I guess it should be ```js 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...