From f1f20b85fee597dd667efa2e2474cdab50186dd6 Mon Sep 17 00:00:00 2001 From: Alex Hunt Date: Thu, 15 May 2025 14:16:43 +0100 Subject: [PATCH] Add explicit exclude and include paths to tsconfig --- template/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/template/tsconfig.json b/template/tsconfig.json index 88fa317..c41b7e2 100644 --- a/template/tsconfig.json +++ b/template/tsconfig.json @@ -1,3 +1,5 @@ { - "extends": "@react-native/typescript-config" + "extends": "@react-native/typescript-config", + "include": ["**/*.ts", "**/*.tsx"], + "exclude": ["**/node_modules", "**/Pods"] }