1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/babel.config.js
Juan Picado 5a0ead5fb6
feat!: drop Node.js 12 (#3983)
* feat!: drop Node.js 12

- Enable minimum Node.js 16

* update notes

* restore files
2023-08-20 18:43:30 +02:00

20 lines
326 B
JavaScript

module.exports = {
presets: [
[
'@babel/env',
{
targets: {
node: '16',
},
},
],
'@babel/typescript',
],
plugins: [
'babel-plugin-dynamic-import-node',
'@babel/proposal-class-properties',
'@babel/syntax-dynamic-import',
],
ignore: ['**/*.d.ts'],
};