From 27fc6bac92ac70917e3097934cb5a2bc21da148a Mon Sep 17 00:00:00 2001 From: Davyd NRB <4661784+retyui@users.noreply.github.com> Date: Tue, 16 Jun 2026 12:47:40 +0200 Subject: [PATCH] Update tsconfig.json to remove jest types Removed jest types from compiler options as it already added https://github.com/react/react-native/blob/1127e54d539a0bc998ecc43104c7573190a87de1/packages/typescript-config/tsconfig.json#L7 --- template/tsconfig.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/template/tsconfig.json b/template/tsconfig.json index 266ba9c..c41b7e2 100644 --- a/template/tsconfig.json +++ b/template/tsconfig.json @@ -1,8 +1,5 @@ { "extends": "@react-native/typescript-config", - "compilerOptions": { - "types": ["jest"] - }, "include": ["**/*.ts", "**/*.tsx"], "exclude": ["**/node_modules", "**/Pods"] }