From c15b279d637ac5d76b8d42f1ec83403a9dcf721c Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 25 Jun 2023 04:53:56 -0400 Subject: [PATCH] fix: add ES2021 to ts compiler --- src/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/index.ts b/src/index.ts index dd320ed..430df51 100644 --- a/src/index.ts +++ b/src/index.ts @@ -27,6 +27,11 @@ export default async function (): Promise { prettier: { singleQuote: false, }, + tsconfig: { + compilerOptions: { + lib: ["ES2021"], + }, + }, }, }; }