react-native-webview/babel.config.js
Thibault Malbranche 319a86e236
feat(android): fix overflow issues and match iOS default renders (#472)
fixes #466 #194

* feat(android): fix overflow issues and match iOS default render error and loading behaviour

* Use babel preset typescript through react-native instead of ts-jest

* Update yarn.lock

* Update README.md
2019-04-02 16:05:56 +02:00

11 lines
181 B
JavaScript

module.exports = function(api) {
api && api.cache(false);
return {
env: {
test: {
presets: ['module:metro-react-native-babel-preset'],
},
},
};
};