Skip to content

Instantly share code, notes, and snippets.

@diego3g
Created February 18, 2019 16:11
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diego3g/19648c3ddb3d8232f775b20ed8ba6282 to your computer and use it in GitHub Desktop.
Save diego3g/19648c3ddb3d8232f775b20ed8ba6282 to your computer and use it in GitHub Desktop.
module.exports = {
presets: ["module:metro-react-native-babel-preset"],
plugins: [
[
"babel-plugin-root-import",
{
"rootPathSuffix": "src"
}
]
],
env: {
"production": {
"plugins": [
[
"babel-plugin-root-import",
{
"rootPathSuffix": "src"
}
]
]
},
"test": {
"plugins": [
[
"babel-plugin-root-import",
{
"rootPathSuffix": "src"
}
]
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment