From 9acff10b73f6c59b6b73ec4c863da6f00e67a889 Mon Sep 17 00:00:00 2001 From: Kirill Gavrilov Date: Sun, 3 May 2026 16:04:29 +0300 Subject: [PATCH] chore(tsconfig): set `moduleResolution` to `bundler` Since the project gets assembled with esbuild --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 79b2771..e602d15 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "module": "ESNext", - "moduleResolution": "node", + "moduleResolution": "bundler", "target": "ES6", "noImplicitAny": true, "isolatedModules": true,