11 lines
275 B
JavaScript
11 lines
275 B
JavaScript
import { declare } from "@babel/helper-plugin-utils";
|
|
import transformExponentiationOperator from "@babel/plugin-transform-exponentiation-operator";
|
|
|
|
export default declare(api => {
|
|
api.assertVersion(7);
|
|
|
|
return {
|
|
plugins: [transformExponentiationOperator],
|
|
};
|
|
});
|