diff options
author | Leon Jiang <leon.jiangy@gmail.com> | 2020-06-24 00:23:26 -0700 |
---|---|---|
committer | Leon Jiang <leon.jiangy@gmail.com> | 2020-06-24 00:23:26 -0700 |
commit | a642f52d519543d9ece4bb525e99ebc281fa6887 (patch) | |
tree | 6da0fa559714a95535e445ed9bffbdb37c70d0c6 /metro.config.js | |
parent | 1bcb2049f80bfdbf23dc45fe6b7e3a66608b6ba7 (diff) |
initial commit, add react-native/typescript boilerplate
Diffstat (limited to 'metro.config.js')
-rw-r--r-- | metro.config.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/metro.config.js b/metro.config.js new file mode 100644 index 00000000..13a96421 --- /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: false, + }, + }), + }, +}; |