mirror of
https://github.com/documentationjs/documentation.git
synced 2025-12-08 18:23:43 +00:00
17 lines
311 B
JavaScript
17 lines
311 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
targets: {
|
|
node: 6
|
|
},
|
|
include: ['transform-regenerator']
|
|
}
|
|
],
|
|
'@babel/preset-flow'
|
|
],
|
|
plugins: ['@babel/plugin-transform-async-to-generator'],
|
|
ignore: ['**/default_theme/assets/*']
|
|
};
|