mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
This has different resolution semantics that we need to take advantage of: .babelrc only applied to files within its own package. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
17 lines
318 B
JavaScript
17 lines
318 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
corejs: 3,
|
|
useBuiltIns: "usage",
|
|
},
|
|
],
|
|
"@babel/typescript",
|
|
],
|
|
plugins: [
|
|
"@babel/proposal-class-properties",
|
|
],
|
|
sourceType: "unambiguous",
|
|
};
|