.babelrc 695 B

1234567891011121314151617181920212223
  1. /* storybook@4.x.x does not seem to support any other babel config filename */
  2. {
  3. "presets": ["@babel/react", "@babel/env"],
  4. "plugins": [
  5. "emotion",
  6. "lodash",
  7. "react-hot-loader/babel",
  8. "@babel/plugin-syntax-dynamic-import",
  9. "@babel/plugin-proposal-object-rest-spread",
  10. "@babel/plugin-transform-runtime",
  11. ["@babel/plugin-proposal-decorators", {"legacy": true}],
  12. ["@babel/plugin-proposal-class-properties", {"loose": true}]
  13. ],
  14. "env": {
  15. "production": {},
  16. "development": {
  17. "plugins": [["emotion", {"sourceMap": true, "autoLabel": true}]]
  18. },
  19. "test": {
  20. "plugins": [["emotion", {"autoLabel": true}], "dynamic-import-node"]
  21. }
  22. }
  23. }