1
0
mirror of https://github.com/tabler/tabler-icons.git synced 2025-01-17 12:48:26 +01:00
tabler-icons/babel.config.js
2023-01-22 00:02:47 +01:00

20 lines
334 B
JavaScript

module.exports = {
presets: ['@babel/env'],
env: {
test: {
presets: ['@babel/env'],
plugins: ['@babel/plugin-transform-runtime']
},
dev: {
plugins: [
[
'transform-inline-environment-variables',
{
include: ['NODE_ENV']
}
]
]
}
}
}