mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 16:07:41 +01:00
28 lines
428 B
JavaScript
28 lines
428 B
JavaScript
|
|
module.exports = {
|
||
|
|
presets: [
|
||
|
|
[
|
||
|
|
'@babel/env',
|
||
|
|
{
|
||
|
|
loose: true,
|
||
|
|
modules: false,
|
||
|
|
},
|
||
|
|
],
|
||
|
|
],
|
||
|
|
env: {
|
||
|
|
test: {
|
||
|
|
presets: ['@babel/env'],
|
||
|
|
plugins: ['@babel/plugin-transform-runtime'],
|
||
|
|
},
|
||
|
|
dev: {
|
||
|
|
plugins: [
|
||
|
|
[
|
||
|
|
'transform-inline-environment-variables',
|
||
|
|
{
|
||
|
|
include: ['NODE_ENV'],
|
||
|
|
},
|
||
|
|
],
|
||
|
|
],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|