Merge pull request #332 from codiophile/patch-1

feat(tsconfig): Enable ESM-interoperability.
This commit is contained in:
Kamil Mysliwiec 2025-08-01 09:24:07 +02:00 committed by GitHub
commit f799911e74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
{ {
"compilerOptions": { "compilerOptions": {
"module": "commonjs", "module": "nodenext",
"moduleResolution": "nodenext",
"resolvePackageJsonExports": true,
"esModuleInterop": true,
"isolatedModules": true,
"declaration": true, "declaration": true,
"removeComments": true, "removeComments": true,
"emitDecoratorMetadata": true, "emitDecoratorMetadata": true,