From 3ef053f255fbb7aa263fa0aebff914c5e4379b1f Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Fri, 2 May 2025 12:13:23 -0700 Subject: [PATCH] fix: test adding explicity .tsx path --- backend/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/tsconfig.json b/backend/tsconfig.json index 523e6de5be..dba51e639b 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -24,7 +24,8 @@ "skipLibCheck": true, "baseUrl": ".", "paths": { - "@app/*": ["./src/*"] + "@app/*": ["./src/*"], + "*": ["*", "*.tsx", "*.ts"] }, "jsx": "react-jsx" },