mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-17 05:47:58 +08:00
17 lines
514 B
JavaScript
17 lines
514 B
JavaScript
module.exports = {
|
|
babelrc: false,
|
|
cacheDirectory: true,
|
|
presets: [
|
|
["modern-browsers", { loose: true, modules: false }],
|
|
"@babel/preset-react",
|
|
],
|
|
plugins: [
|
|
"@babel/plugin-proposal-function-bind",
|
|
["@babel/plugin-proposal-decorators", { legacy: true }],
|
|
["@babel/plugin-proposal-class-properties", { loose: true }],
|
|
"@babel/plugin-proposal-export-namespace-from",
|
|
"@babel/plugin-proposal-optional-chaining",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator",
|
|
],
|
|
};
|