From 81bd2a999e649dee635d5d0dc32355c4e7538ba1 Mon Sep 17 00:00:00 2001 From: Greg McGrath Date: Fri, 14 Apr 2023 10:07:29 -0400 Subject: [PATCH] fix: fix for babel --- tsconfig.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 21964b7..0144418 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,9 @@ { "compilerOptions": { "strict": true, + "target": "es6", + "module": "commonjs", + "esModuleInterop": true, "rootDir": "src", "outDir": "dist", "allowJs": false, @@ -10,6 +13,7 @@ "forceConsistentCasingInFileNames": true, "skipLibCheck": true }, + "lib": ["es2017"], "include": [ "src/**/*.ts", "src/**/*.tsx",