| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "presets": [
- [
- "env",
- {
- "modules": false
- }
- ],
- "flow",
- "react",
- "stage-1"
- ],
- "plugins": [
- "react-hot-loader/babel",
- "transform-decorators-legacy"
- ],
- "env": {
- "development": {
- "plugins": [
- "transform-es2015-modules-commonjs",
- [
- "styled-components",
- {
- "minify": false
- }
- ]
- ]
- },
- "test": {
- "plugins": [
- "transform-es2015-modules-commonjs"
- ]
- },
- "production": {
- "plugins": [
- "transform-react-remove-prop-types",
- [
- "styled-components",
- {
- "displayName": false
- }
- ]
- ]
- }
- }
- }
|