2020-12-29 08:08:50 +00:00
|
|
|
const config2 = {
|
|
|
|
"presets": [
|
|
|
|
"@babel/preset-typescript",
|
|
|
|
|
|
|
|
[
|
|
|
|
"@babel/preset-env",
|
|
|
|
{
|
|
|
|
"modules": false,
|
|
|
|
"corejs": 3,
|
|
|
|
"useBuiltIns": "usage",
|
|
|
|
//"include": ["es.promise.finally"],
|
|
|
|
"targets": {
|
|
|
|
"chrome": "56"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
|
|
|
|
//"@babel/preset-2015"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
["@babel/plugin-proposal-class-properties", { "loose": true }],
|
|
|
|
["@babel/plugin-transform-typescript", {
|
|
|
|
"allowNamespaces": true
|
|
|
|
}]
|
|
|
|
]
|
2020-02-06 15:43:07 +00:00
|
|
|
};
|
2020-12-29 08:08:50 +00:00
|
|
|
|
|
|
|
const config3 = {
|
|
|
|
"presets": [
|
|
|
|
"@babel/preset-env",
|
|
|
|
"@babel/preset-typescript"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"@babel/plugin-proposal-class-properties",
|
|
|
|
["@babel/plugin-transform-typescript", {
|
|
|
|
"allowNamespaces": true
|
|
|
|
}]
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = config2;
|