mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
17 lines
294 B
JavaScript
17 lines
294 B
JavaScript
module.exports = {
|
|
plugins: ['babel-plugin-transform-dynamic-import'],
|
|
ignore: ['./src/generators/*/templates/**/*'],
|
|
presets: [
|
|
[
|
|
'@babel/env',
|
|
{
|
|
targets: {
|
|
node: '10',
|
|
},
|
|
corejs: 2,
|
|
useBuiltIns: 'usage',
|
|
},
|
|
],
|
|
],
|
|
};
|