mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
69a2283984
GitOrigin-RevId: 69dc5f9aad3e045cc6904e3663e9965094eced76
44 lines
966 B
JSON
44 lines
966 B
JSON
{
|
|
"presets": [
|
|
"@babel/typescript",
|
|
[
|
|
"@babel/react",
|
|
{
|
|
"runtime": "automatic"
|
|
}
|
|
],
|
|
[
|
|
"@babel/env",
|
|
{
|
|
"useBuiltIns": "usage",
|
|
// This version must be aligned with the `core-js` version in `package.json`
|
|
"corejs": { "version": 3.6 }
|
|
}
|
|
]
|
|
],
|
|
"plugins": ["angularjs-annotate", "macros"],
|
|
// Target our current Node version in test environment, to transform and
|
|
// polyfill only what's necessary
|
|
"env": {
|
|
"test": {
|
|
"presets": [
|
|
"@babel/typescript",
|
|
[
|
|
"@babel/react",
|
|
{
|
|
"runtime": "automatic"
|
|
}
|
|
],
|
|
[
|
|
"@babel/env",
|
|
{
|
|
"targets": { "node": "14.18" },
|
|
"useBuiltIns": "usage",
|
|
// This version must be aligned with the `core-js` version in `package.json`
|
|
"corejs": { "version": 3.6 }
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|
|
}
|