From 47250e7ed7d608e499ae8f3ec99494269db30292 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 7 Jun 2022 17:50:05 -0500 Subject: Initial commit --- metro.config.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 metro.config.js (limited to 'metro.config.js') diff --git a/metro.config.js b/metro.config.js new file mode 100644 index 000000000..e91aba937 --- /dev/null +++ b/metro.config.js @@ -0,0 +1,17 @@ +/** + * Metro configuration for React Native + * https://github.com/facebook/react-native + * + * @format + */ + +module.exports = { + transformer: { + getTransformOptions: async () => ({ + transform: { + experimentalImportSupport: false, + inlineRequires: true, + }, + }), + }, +}; -- cgit 1.4.1