mirror of
https://github.com/koush/scrypted.git
synced 2026-02-10 09:12:03 +00:00
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
module.exports = {
|
|
presets: [
|
|
['@babel/preset-env', {
|
|
"targets": "last 1 chrome versions"
|
|
}]
|
|
],
|
|
plugins: [
|
|
"@babel/plugin-proposal-optional-chaining",
|
|
"@babel/plugin-proposal-object-rest-spread",
|
|
"@babel/plugin-proposal-optional-catch-binding",
|
|
]
|
|
}
|