Skip to content

Instantly share code, notes, and snippets.

@codegino
Last active June 1, 2018 11:55
Show Gist options
  • Save codegino/91fdb1fc2d7c9e2c7420053c0292408a to your computer and use it in GitHub Desktop.
Save codegino/91fdb1fc2d7c9e2c7420053c0292408a to your computer and use it in GitHub Desktop.
React native configs
{
"presets": [
"babel-preset-react-native-stage-0/decorator-support",
"flow",
"react-native"
],
"env": {
"development": {
"plugins": [
"transform-react-jsx-source"
]
}
}
}
{
"plugins": [
"react-native"
],
"env": {
"react-native/react-native": true,
"es6": true
},
"parser": "babel-eslint",
"extends": "airbnb",
"rules": {
"linebreak-style": 0,
"react/jsx-filename-extension": [1, {
"extensions": [".js", ".jsx"]
}]
},
"settings": {
"import/resolver": {
"node": {
"paths": ["src"]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment