From 316d881fbb850fa60189f6b3169c402c0758c15b Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Mon, 18 Dec 2023 01:48:01 -0500 Subject: [PATCH] fix: set module config to ES2022 --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 4134825..a27e527 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,6 +15,7 @@ "jsx": "react-jsx", "moduleResolution": "Bundler", "resolveJsonModule": true, + "module": "ES2022", "target": "ES2022", "strict": true, "allowJs": true,