mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
43f70437af
There is no breaking changes on features aside of Node version
23 lines
474 B
JavaScript
23 lines
474 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/env',
|
|
{
|
|
targets: {
|
|
node: '12',
|
|
},
|
|
},
|
|
],
|
|
'@babel/typescript',
|
|
],
|
|
plugins: [
|
|
'babel-plugin-dynamic-import-node',
|
|
'@babel/proposal-class-properties',
|
|
'@babel/proposal-object-rest-spread',
|
|
'@babel/plugin-proposal-optional-chaining',
|
|
'@babel/plugin-proposal-nullish-coalescing-operator',
|
|
'@babel/syntax-dynamic-import',
|
|
],
|
|
ignore: ['**/*.d.ts'],
|
|
};
|