Jérôme Heissler
Jérôme Heissler
I fix this issue by adding [babel-plugin-transform-typescript-metadata](https://github.com/leonardfactory/babel-plugin-transform-typescript-metadata#readme) ```javascript { "plugins": [ ... ["babel-plugin-transform-typescript-metadata"], ["@babel/plugin-proposal-decorators", { "legacy": true }], ["@babel/plugin-proposal-class-properties", { "loose": true }] ], "presets": [ "module:metro-react-native-babel-preset" ] } ```
I had the same problem, by removing all the `import * as ...`from my code I no longer had that problem
@MadSpindel I've rebased my code to the latest commit on master