From a41d0b3323c750c15f7d2723486911d3a434b0aa Mon Sep 17 00:00:00 2001 From: Matiss Janis Aboltins Date: Wed, 4 Mar 2026 21:13:40 +0000 Subject: [PATCH] Update TypeScript configuration in API package to use ES2022 module and bundler resolution. This change enhances compatibility with modern JavaScript features and improves the build process. --- packages/api/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/api/tsconfig.json b/packages/api/tsconfig.json index c4b76df800..dc92789cf3 100644 --- a/packages/api/tsconfig.json +++ b/packages/api/tsconfig.json @@ -5,8 +5,8 @@ // Using ES2021 because that's the newest version where // the latest Node 16.x release supports all of the features "target": "ES2021", - "module": "CommonJS", - "moduleResolution": "node10", + "module": "es2022", + "moduleResolution": "bundler", "noEmit": false, "declaration": true, "declarationMap": true,