mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-01-20 01:22:59 +08:00
22 lines
427 B
JavaScript
22 lines
427 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"]
|
|
]
|
|
}; |