Skip to content

Commit

Permalink
Improve comment
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed May 8, 2024
1 parent 4248019 commit a8ae5d7
Showing 1 changed file with 6 additions and 1 deletion.
@@ -1,3 +1,8 @@
/* eslint-disable @babel/development/plugin-name */

export { default } from "@babel/plugin-transform-react-jsx/lib/development";
import plugin from "@babel/plugin-transform-react-jsx/lib/development";
// We need to explicitly annotate this export because
// @babel/plugin-transform-react-jsx/lib/development has no type definitions
// (it's not a public entry point)
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
export default plugin as typeof import("@babel/plugin-transform-react-jsx").default;

0 comments on commit a8ae5d7

Please sign in to comment.