Skip to content
代码片段 群组 项目
未验证 提交 94b9d60a 编辑于 作者: Lukas Eipert's avatar Lukas Eipert
浏览文件

Remove IE11 support from babel transpilation

We do not have a fully defined babel preset environment just yet, thus
we go with a bit of conservative values for the other browsers (support
for more versions than necessary) just in order to be safe and until we
have decided on the exact versions to support.
上级 e7a57573
No related branches found
No related tags found
无相关合并请求
...@@ -9,8 +9,23 @@ let presets = [ ...@@ -9,8 +9,23 @@ let presets = [
useBuiltIns: 'usage', useBuiltIns: 'usage',
corejs: { version: 3, proposals: true }, corejs: { version: 3, proposals: true },
modules: false, modules: false,
/**
* This list of browsers is a conservative first definition, based on
* https://docs.gitlab.com/ee/install/requirements.html#supported-web-browsers
* with the following reasoning:
*
* - Edge: Pick the last two major version before the Chrome switch
* - Rest: We should support the latest ESR of Firefox: 68, because it used quite a lot.
* For the rest, pick browser versions that have a similar age to Firefox 68.
*
* See also this follow-up epic:
* https://gitlab.com/groups/gitlab-org/-/epics/3957
*/
targets: { targets: {
ie: '11', chrome: '73',
edge: '17',
firefox: '68',
safari: '12',
}, },
}, },
], ],
......
---
title: Remove Internet Explorer 11 from babel transpilation
merge_request: 36840
author:
type: removed
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册