From 828463aab913fc8057eafcade0a08fac48b906c4 Mon Sep 17 00:00:00 2001 From: Xiphe Date: Mon, 2 Oct 2023 11:24:04 +0200 Subject: [PATCH] build: fix tsconfig --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index abd2886..c7779db 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,13 +2,13 @@ "compilerOptions": { "strict": true, "outDir": "dist", - "module": "NodeNext", + "module": "ES2020", "target": "ES2016", "lib": ["es5", "es6", "es7", "DOM"], "sourceMap": true, "allowJs": false, "jsx": "react", - "moduleResolution": "node", + "moduleResolution": "Bundler", "rootDir": "src", "baseUrl": "src", "forceConsistentCasingInFileNames": true,