mirror of
https://github.com/tabler/tabler-icons.git
synced 2025-01-17 12:48:26 +01:00
20 lines
334 B
JavaScript
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']
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|
|
}
|