0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/babel.config.js

20 lines
326 B
JavaScript
Raw Normal View History

2020-10-11 12:06:21 -05:00
module.exports = {
presets: [
[
'@babel/env',
{
targets: {
2024-09-12 15:35:11 -05:00
node: '20',
2020-10-11 12:06:21 -05:00
},
},
],
'@babel/typescript',
],
plugins: [
'babel-plugin-dynamic-import-node',
'@babel/proposal-class-properties',
'@babel/syntax-dynamic-import',
],
ignore: ['**/*.d.ts'],
};