mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 16:51:42 +03:00
42 lines
703 B
Plaintext
42 lines
703 B
Plaintext
{
|
|
"comments": false,
|
|
"targets": {
|
|
"esmodules": true,
|
|
"node": "current",
|
|
"safari": "11"
|
|
},
|
|
"presets": [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
"useBuiltIns": false,
|
|
"bugfixes": true,
|
|
"loose": true,
|
|
"debug": true
|
|
}
|
|
],
|
|
[
|
|
"@babel/preset-typescript",
|
|
{
|
|
"optimizeConstEnums": true
|
|
}
|
|
]
|
|
],
|
|
"plugins": [
|
|
[
|
|
"@babel/plugin-transform-runtime",
|
|
{
|
|
"regenerator": false, // es2017 support async functions
|
|
"useESModules": true
|
|
}
|
|
],
|
|
[
|
|
"polyfill-corejs3",
|
|
{
|
|
"method": "usage-pure"
|
|
}
|
|
],
|
|
"@babel/plugin-proposal-export-namespace-from"
|
|
]
|
|
}
|