From b1973bdd90e79ada845a1e6aba41174a56c131cb Mon Sep 17 00:00:00 2001 From: greysoh Date: Fri, 10 May 2024 09:07:31 -0400 Subject: [PATCH] fix: Fixes TypeScript not building correctly. This works locally but not on GitHub actions?? what --- lom/tsconfig.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lom/tsconfig.json b/lom/tsconfig.json index 50c1f77..99ab26e 100644 --- a/lom/tsconfig.json +++ b/lom/tsconfig.json @@ -3,6 +3,10 @@ "target": "es2021", "module": "es2022", "moduleResolution": "node", + + "lib": [ + "es2021" + ], "outDir": "./out", "rootDir": "./src",