mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-19 02:48:30 +08:00
14 lines
241 B
JavaScript
14 lines
241 B
JavaScript
module.exports = {
|
|
babelrc: false,
|
|
cacheDirectory: true,
|
|
presets: [
|
|
[ "es2015", { loose: true, modules: false } ],
|
|
"stage-0",
|
|
"react"
|
|
],
|
|
plugins: [
|
|
"react-hot-loader/babel",
|
|
"transform-decorators-legacy"
|
|
]
|
|
};
|