@@ -57,3 +57,16 @@ buck-out/
# CocoaPods
/ios/Pods/
+
+# others
+/__tests__
+/android
+/ios
+/test.md
+/.buckconfig
+/.flowconfig
+/.gitattributes
+/.watchmanconfig
+/yarn.lock
+/.idea
@@ -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: false,
+ },
+ }),
+};