We try and adopt template updates in our action from time to time and [Convert to ESM and use rollup](https://github.com/graalvm/setup-graalvm/pull/134) has caused [an issue on Windows](https://github.com/graalvm/setup-graalvm/issues/138) related to https://github.com/rollup/rollup/issues/3434. Looking at the [dist/index.js](https://raw.githubusercontent.com/actions/typescript-action/refs/heads/main/dist/index.js) of this template, I also see a bunch of `require` calls. So this might also be an issue in this template. I tried using [`transformMixedEsModules=true`](https://github.com/rollup/plugins/tree/master/packages/commonjs#transformmixedesmodules) in [here](https://github.com/actions/typescript-action/blob/79fef5b742e1bda2e9e9ac444903234f2610dc77/rollup.config.ts#L15) but that didn't seem to fix the problem. Any help with this is appreciated! Pinging @ncalteen because he's the author of https://github.com/actions/typescript-action/pull/969.