Info

The error in question:

TsPatchError: tsconfig.json > plugins: "./typia/lib/transform" does not have an export "default": {}

I'm using a forked version of the project Typia, made to compile to ESM instead of CJS. I'm not going to upload the package, so I've included the build output in ./typia. Link to the fork if that helps.

You can also try the CJS version yourself by npm install typia then replacing "./typia/lib/transform" with "typia/lib/transform" in tsconfig.json. I tried copying the build output to the actual node_modules/typia folder, and tried building (without having to monkey around with anything else) but sure enough, it still only builds with the non-forked version.

Steps to reproduce

npm install
npm run build

Expected behavior

The build should succeed.

Actual behavior

The build fails with the error above. It seems to me that the transform.js file should have a default export.