storybook/lib/cli/.babelrc.json
Gaëtan Maisse a06ff34138 fix(cli): add missing pattern in babel ignore attribute
Added the template folder that has been forgotten in 3dd714d3532687d958c41e093187b84ffca603ee
2020-02-14 21:53:02 +01:00

21 lines
361 B
JSON

{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": 8
},
"useBuiltIns": "usage",
"corejs": "3"
}
]
],
"ignore": [
"./src/generators/**/template",
"./src/generators/**/template-csf",
"./src/generators/**/template-csf-ts",
"./src/generators/**/template-mdx"
]
}