mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
Prettier would do this anyway, but it’s separated out for a more reviewable diff. Generated by ESLint. Signed-off-by: Anders Kaseorg <anders@zulip.com>
19 lines
486 B
JavaScript
19 lines
486 B
JavaScript
module.exports = {
|
||
presets: [
|
||
[
|
||
"@babel/preset-env",
|
||
{
|
||
corejs: 3,
|
||
loose: true, // Loose mode for…of loops are 5× faster in Firefox
|
||
useBuiltIns: "usage",
|
||
},
|
||
],
|
||
"@babel/typescript",
|
||
],
|
||
plugins: [
|
||
"@babel/proposal-class-properties",
|
||
["@babel/plugin-proposal-unicode-property-regex", {useUnicodeFlag: false}],
|
||
],
|
||
sourceType: "unambiguous",
|
||
};
|