소스 검색

Merge branch 'master' of ssh://10.10.100.21/source/UU_RN_M

time 6 년 전
부모
커밋
d8a252a44b
2개의 변경된 파일30개의 추가작업 그리고 0개의 파일을 삭제
  1. 13 0
      .gitignore
  2. 17 0
      metro.config.js

+ 13 - 0
.gitignore

@@ -57,3 +57,16 @@ buck-out/
 
 # CocoaPods
 /ios/Pods/
+
+
+# others
+/__tests__
+/android
+/ios
+/test.md
+/.buckconfig
+/.flowconfig
+/.gitattributes
+/.watchmanconfig
+/yarn.lock
+/.idea

+ 17 - 0
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: false,
+      },
+    }),
+  },
+};