From e1fca9f914ad63a4dec63759411797e65502dd01 Mon Sep 17 00:00:00 2001 From: Tim Heilman Date: Fri, 8 Mar 2024 06:40:25 -0800 Subject: [PATCH 1/2] build: include all source files in tsconfig.json: without this change my JetBrains IDE has lots of errors in .tsx files. --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 1029afa08..e1520ee57 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -20,6 +20,7 @@ }, "include": [ "src/**/*.cy.{js,ts,jsx,tsx}", + "src/**/*.{js,ts,jsx,tsx}", "scripts", "backend", "src/__tests__", From c9a67e6ec59030772ec2e0228cc9c82c3bf79dd2 Mon Sep 17 00:00:00 2001 From: Tim Heilman Date: Fri, 8 Mar 2024 06:41:50 -0800 Subject: [PATCH 2/2] build: remove redundant .cy.* in tsconfig include directive --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index e1520ee57..223aa3876 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,7 +19,6 @@ "types": ["cypress"], }, "include": [ - "src/**/*.cy.{js,ts,jsx,tsx}", "src/**/*.{js,ts,jsx,tsx}", "scripts", "backend",