Skip to content

Instantly share code, notes, and snippets.

@fourcolors
Created June 15, 2017 20:08
Show Gist options
  • Save fourcolors/f278db1b40138c690905f98cd8795b57 to your computer and use it in GitHub Desktop.
Save fourcolors/f278db1b40138c690905f98cd8795b57 to your computer and use it in GitHub Desktop.
Example for create react native app with alias
{
"presets": ["babel-preset-expo"],
"env": {
"development": {
"plugins":
["transform-react-jsx-source",
["module-resolver",{
"root": ["./src"],
"alias": {
"screens": "./screens"
}
}
]
]
}
}
}
@cyrilf
Copy link

cyrilf commented Jun 25, 2017

Helped me! 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment