From 7403018e612a7b67797bae604f782484b258ce14 Mon Sep 17 00:00:00 2001 From: Erik Blomqvist Date: Fri, 18 Jul 2025 19:47:39 +0200 Subject: [PATCH] feat(tsconfig): Enable ESM-interoperability. --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 10d7fc706..b0bbd948b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,10 @@ { "compilerOptions": { - "module": "commonjs", + "module": "nodenext", + "moduleResolution": "nodenext", + "resolvePackageJsonExports": true, + "esModuleInterop": true, + "isolatedModules": true, "declaration": true, "removeComments": true, "emitDecoratorMetadata": true,