From 7e00f2bb5d0f59a02b65cb53a700ed19f0de5393 Mon Sep 17 00:00:00 2001 From: Satyajit Sahoo Date: Tue, 23 Jul 2024 10:14:36 +0200 Subject: [PATCH] fix: exclude output folder from typescript --- .../templates/common/tsconfig.build.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/create-react-native-library/templates/common/tsconfig.build.json b/packages/create-react-native-library/templates/common/tsconfig.build.json index 2a21c289e..3c0636adf 100644 --- a/packages/create-react-native-library/templates/common/tsconfig.build.json +++ b/packages/create-react-native-library/templates/common/tsconfig.build.json @@ -1,4 +1,4 @@ { "extends": "./tsconfig", - "exclude": ["example"] + "exclude": ["example", "lib"] }