This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/.babelrc

19 lines
368 B
Plaintext
Raw Normal View History

2016-02-27 21:53:11 +00:00
{
2018-01-04 05:39:32 +00:00
"presets": ["react", "env"],
2016-07-23 19:50:48 +00:00
"plugins": [
"lodash",
2017-07-12 05:00:50 +00:00
"styled-components",
2017-04-29 22:52:05 +00:00
"transform-decorators-legacy",
"transform-es2015-destructuring",
"transform-object-rest-spread",
"transform-regenerator",
2018-01-04 04:08:43 +00:00
"transform-class-properties",
"syntax-dynamic-import"
2016-07-23 19:50:48 +00:00
],
2016-02-27 21:53:11 +00:00
"env": {
"development": {
2018-01-04 05:39:32 +00:00
"presets": ["react-hmre"]
2016-02-27 21:53:11 +00:00
}
}
2018-01-04 05:39:32 +00:00
}