mirror of
https://github.com/re-rxjs/react-rxjs.git
synced 2025-12-08 18:01:51 +00:00
22 lines
399 B
JavaScript
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")
|
|
},
|
|
},
|
|
}
|
|
},
|
|
],
|
|
}
|