mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-01-18 16:02:59 +08:00
26 lines
475 B
JavaScript
26 lines
475 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
"@babel/env",
|
|
{
|
|
corejs: "3",
|
|
useBuiltIns: "usage",
|
|
targets: {
|
|
browsers: [
|
|
"edge >= 16",
|
|
"safari >= 9",
|
|
"firefox >= 57",
|
|
"ie >= 11",
|
|
"ios >= 9",
|
|
"chrome >= 49",
|
|
],
|
|
},
|
|
},
|
|
],
|
|
],
|
|
plugins: [
|
|
["@babel/plugin-proposal-class-properties"],
|
|
["@babel/plugin-transform-typescript"],
|
|
],
|
|
};
|