react-rxjs/packages/core/babel.config.js
2022-03-11 15:53:53 -05:00

22 lines
399 B
JavaScript

// Only used by Jest
module.exports = {
presets: [
[
"@babel/preset-env",
{ useBuiltIns: "entry", corejs: "2", targets: { node: "current" } },
],
"@babel/preset-typescript",
],
plugins: [
function () {
return {
visitor: {
MetaProperty(path) {
path.replaceWithSourceString("process")
},
},
}
},
],
}