From 71131cc2da31fcb1b03091ae99bf5e6d1ba9aac7 Mon Sep 17 00:00:00 2001 From: Wojciech Maj Date: Fri, 12 Jul 2024 00:27:53 +0200 Subject: [PATCH] chore: use moduleResolution: bundler Use moduleResolution: bundler since the code is built with esbuild, not consumed directly --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 964f6cc27..0e80144d3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,11 +4,11 @@ "baseUrl": ".", "esModuleInterop": true, "experimentalDecorators": true, - "moduleResolution": "node", + "module": "esnext", + "moduleResolution": "bundler", "noEmit": true, "forceConsistentCasingInFileNames": true, "lib": ["ES2023"], - "module": "commonjs", "resolveJsonModule": true, "skipLibCheck": true, "strict": true,