From 9d7184271405ea2e5d9d64dae0e8ed6a61e32b86 Mon Sep 17 00:00:00 2001 From: elpatron Date: Wed, 1 Oct 2025 22:14:12 +0200 Subject: [PATCH] =?UTF-8?q?fix(server-build):=20Server-Build=20auf=20ESNex?= =?UTF-8?q?t/bundler=20umgestellt=20f=C3=BCr=20oRPC=20und=20import.meta=20?= =?UTF-8?q?Kompatibilit=C3=A4t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.server.build.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tsconfig.server.build.json b/tsconfig.server.build.json index 7ae3ce7..c5a11ff 100644 --- a/tsconfig.server.build.json +++ b/tsconfig.server.build.json @@ -5,11 +5,13 @@ "outDir": "server-dist", "sourceMap": false, "declaration": false, - "module": "CommonJS", - "moduleResolution": "Node", + "module": "ESNext", + "moduleResolution": "bundler", "allowImportingTsExtensions": false, "target": "ES2022", - "baseUrl": "." + "baseUrl": ".", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true }, "include": [ "src/server/**/*.ts",