diff options
Diffstat (limited to 'docs/babel.config.js')
| -rw-r--r-- | docs/babel.config.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/babel.config.js b/docs/babel.config.js new file mode 100644 index 000000000..ce9c9de02 --- /dev/null +++ b/docs/babel.config.js @@ -0,0 +1,17 @@ +module.exports = { + presets: [ + [ + '@babel/preset-env', + { + targets: { + browsers: [ + // Best practice: https://github.com/babel/babel/issues/7789 + '>=1%', + 'not ie 11', + 'not op_mini all' + ] + } + } + ] + ] +};
\ No newline at end of file |
