From 4afee45440560fb810c60f37f3e290dc7e0d6ed3 Mon Sep 17 00:00:00 2001 From: Sathya Gunasekaran Date: Thu, 2 Nov 2023 11:10:33 -0700 Subject: [PATCH] [ez] Add missing ts type --- .../babel-plugin-react-forget/src/Entrypoint/Program.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts b/compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts index 7178c8e448..cde8dba18a 100644 --- a/compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts +++ b/compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts @@ -181,7 +181,7 @@ function insertNewFunctionDeclaration( function findEslintSuppressions( fileComments: Array ): CompilerError | null { - const violations = []; + const violations: Array = []; if (Array.isArray(fileComments)) { for (const comment of fileComments) {