.babelrc 681 B

12345678910111213141516171819202122
  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. "react-hot-loader/babel",
  7. "@babel/plugin-syntax-dynamic-import",
  8. "@babel/plugin-proposal-object-rest-spread",
  9. "@babel/plugin-transform-runtime",
  10. ["@babel/plugin-proposal-decorators", {"legacy": true}],
  11. ["@babel/plugin-proposal-class-properties", {"loose": true}]
  12. ],
  13. "env": {
  14. "production": {},
  15. "development": {
  16. "plugins": [["emotion", {"sourceMap": true, "autoLabel": true}]]
  17. },
  18. "test": {
  19. "plugins": [["emotion", {"autoLabel": true}], "dynamic-import-node"]
  20. }
  21. }
  22. }