mirror of
https://github.com/gre/gl-react.git
synced 2026-01-18 16:16:59 +00:00
20 lines
367 B
JavaScript
Executable File
20 lines
367 B
JavaScript
Executable File
module.exports = {
|
|
presets: [
|
|
[
|
|
"@babel/env",
|
|
{
|
|
targets: {
|
|
browsers: "Last 2 Chrome versions, Firefox ESR",
|
|
node: "current"
|
|
}
|
|
}
|
|
],
|
|
"@babel/preset-react",
|
|
"@babel/preset-flow"
|
|
],
|
|
plugins: [
|
|
"@babel/plugin-proposal-class-properties",
|
|
"@babel/plugin-proposal-object-rest-spread"
|
|
]
|
|
};
|