From ee565db7f5b54eaeb67c5ba3a9476a9259c8fa86 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 18 Mar 2024 13:00:56 -0500 Subject: [PATCH] tsconfig: for sanity, go back to moduleResolution bundler and see if that fixes it --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index fb1b746..ac1925b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,11 @@ { "compilerOptions": { - "module": "NodeNext", + "module": "esnext", "target": "esnext", "lib": ["dom", "dom.iterable", "esnext"], "declaration": true, "strict": true, - "moduleResolution": "NodeNext", + "moduleResolution": "Bundler", "skipLibCheck": true, "esModuleInterop": true, "emitDeclarationOnly": true,