diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-12-14 11:11:46 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-12-14 14:46:25 +0100 |
commit | f2411939de92694650514f635e50e655079aa008 (patch) | |
tree | 17ff1161ff8e485090a8d42f30fd7ffb235ae1b1 /apps/accessibility/.babelrc.js | |
parent | 51f13a7e9ce36abb8a9f8da481e187bf98eba021 (diff) | |
download | nextcloud-server-f2411939de92694650514f635e50e655079aa008.tar.gz nextcloud-server-f2411939de92694650514f635e50e655079aa008.zip |
Transpile arrow function for ie11 compatibility
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/accessibility/.babelrc.js')
-rw-r--r-- | apps/accessibility/.babelrc.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/accessibility/.babelrc.js b/apps/accessibility/.babelrc.js new file mode 100644 index 00000000000..21cf7022fd3 --- /dev/null +++ b/apps/accessibility/.babelrc.js @@ -0,0 +1,12 @@ +module.exports = { + presets: [ + [ + '@babel/preset-env', + { + targets: { + browsers: ['last 2 versions', 'ie >= 11'] + } + } + ] + ] +} |