Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
website/babel.config.json

12 lines
234 B
JSON
Raw Normal View History

2021-07-13 05:03:28 +00:00
{
"presets": [["@babel/preset-env", {
"bugfixes": true,
"spec": true,
"useBuiltIns": "entry",
"shippedProposals": true
}], "@babel/preset-typescript"],
"plugins": [["@babel/plugin-transform-runtime", {
"corejs": 3
}]]
}