From b5d13924514fddf1a1a9f4d56705a9d61fb6e771 Mon Sep 17 00:00:00 2001 From: defiQUG Date: Fri, 23 Jan 2026 16:52:38 -0800 Subject: [PATCH] Fix API tsconfig: set moduleResolution to node for CommonJS --- apps/api/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/api/tsconfig.json b/apps/api/tsconfig.json index e578b2c..9e6254a 100644 --- a/apps/api/tsconfig.json +++ b/apps/api/tsconfig.json @@ -5,6 +5,7 @@ "rootDir": "./src", "module": "CommonJS", "target": "ES2022", + "moduleResolution": "node", "esModuleInterop": true }, "include": ["src/**/*"],