clustring
Version:
Algorithms for clustering strings
34 lines (33 loc) • 955 B
Plain Text
{
"plugins": [
"@babel/plugin-proposal-unicode-property-regex"
],
"env": {
"test": {
"presets": [
[ "@babel/preset-env", { "modules": "cjs" } ]
]
},
"development": {
"presets": [
[ "@babel/preset-env", {
"modules": false,
//"debug": true,
"useBuiltIns": "usage",
// Shrink enormously with "targets" and "exclude":
// "targets": don't bother with browsers that can't, e.g., handle await
"targets": {
"browsers": [ "last 2 versions", "not dead", "not ie <=11", "not android <= 67" ]
},
"exclude": [
// "web.dom": Babel probably shouldn't be trying to include it
"web.dom.iterable",
// "es6.regexp": assume String.replace() won't produce a bug _for us_ in IE Edge
"es6.regexp.replace",
"es6.regexp.split"
],
} ]
]
}
}
}