@samitouri / QOS-React / commits / 76b7331b0d

[healthcheck] Only glob files with certain extensions by default

ghstack-source-id: b8db17266992a705645c86916966e06404709fa0 Pull Request resolved: https://github.com/facebook/react-forget/pull/2957

Lauren Tan committed May 11, 2024 at 00:20 UTC 76b7331b0d817bd4b304d31cc049cbce6ba3b3a2
1 file changed +1 -1
compiler/packages/react-compiler-healthcheck/src/index.ts
+1 -1
@@ -20,7 +20,7 @@ async function main() {
20 .option("src", {
21 description: "glob expression matching src files to compile",
22 type: "string",
23 - default: "**/*.*",
23 + default: "**/*.{js,jsx,ts,tsx,json}",
24 })
25 .parseSync();
26