From 31aabfa82ce132f6b7c123affab07e49cfbbe9bc Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Tue, 23 Jan 2024 21:14:03 -0500 Subject: [PATCH] Use moduleResolution bundler (#1571) --- tsconfig.base.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index 5f6b005b..37e8954f 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -1,7 +1,7 @@ { "compilerOptions": { - "target": "ES2020", - "moduleResolution": "Node", + "target": "es2020", + "moduleResolution": "bundler", "declaration": true, "strict": true, "allowSyntheticDefaultImports": true,