feat(tsconfig): Enable ESM-interoperability.

This commit is contained in:
Erik Blomqvist 2025-07-18 19:47:39 +02:00 committed by GitHub
parent 76d8e962aa
commit 7403018e61
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,