From a86c521f50b63c66f1c019dcbbce3aa5dfffd8fe Mon Sep 17 00:00:00 2001 From: Andrei Shikov Date: Tue, 15 Feb 2022 05:43:05 -0800 Subject: [PATCH] Remove optional codegen config inside template (#33108) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/33108 The codegen config is optional and can be removed from the default package.json configuration in the template to simplify 0.68 upgrade for people who are not opted-in to the new arch. Changelog: [Internal] - Remove optional codegenConfig field from template Reviewed By: cortinico Differential Revision: D34216988 fbshipit-source-id: 5c448472eed99bc112aef204c4025454171a83c5 --- template/package.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/template/package.json b/template/package.json index 5429ca0afa5..b59eb0d4277 100644 --- a/template/package.json +++ b/template/package.json @@ -25,8 +25,5 @@ }, "jest": { "preset": "react-native" - }, - "codegenConfig": { - "libraries": [] } }