mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
19 lines
326 B
JavaScript
19 lines
326 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/env',
|
|
{
|
|
targets: {
|
|
node: '20',
|
|
},
|
|
},
|
|
],
|
|
'@babel/typescript',
|
|
],
|
|
plugins: [
|
|
'babel-plugin-dynamic-import-node',
|
|
'@babel/proposal-class-properties',
|
|
'@babel/syntax-dynamic-import',
|
|
],
|
|
ignore: ['**/*.d.ts'],
|
|
};
|