Skip to content

Instantly share code, notes, and snippets.

@SOSANA
Last active March 25, 2017 18:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SOSANA/0d28991a201b0b6b0fe67b812e7f96f6 to your computer and use it in GitHub Desktop.
Save SOSANA/0d28991a201b0b6b0fe67b812e7f96f6 to your computer and use it in GitHub Desktop.
Babel Config
{
"presets": [
[
"env",
{
"targets": {
"browsers": ["IE 8"]
}
}
],
"react"
],
"env": {
"development": {
"presets": [
"react-hot-loader/babel",
"syntax-dynamic-import",
[
"env",
{
"modules": false,
"targets": {
"browsers": ["IE 8"]
}
}
]
]
},
"production": {
"presets": [
"syntax-dynamic-import",
[
"env",
{
"modules": false,
"targets": {
"browsers": ["IE 8"]
}
}
]
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment