mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
23 lines
359 B
JavaScript
23 lines
359 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
targets: {
|
|
node: "current"
|
|
}
|
|
}
|
|
],
|
|
"@babel/preset-react",
|
|
"@babel/preset-typescript"
|
|
],
|
|
env: {
|
|
test: {
|
|
plugins: ['dynamic-import-node']
|
|
},
|
|
production: {
|
|
plugins: ['@babel/plugin-syntax-dynamic-import']
|
|
}
|
|
}
|
|
};
|