initial commit

(just the typescript template)
This commit is contained in:
austinried
2021-06-08 13:38:16 +09:00
commit b38ba9aaed
57 changed files with 25485 additions and 0 deletions

17
metro.config.js Normal file
View File

@@ -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,
},
}),
},
};