We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdcd6ef commit ce7eed2Copy full SHA for ce7eed2
package.json
@@ -21,6 +21,7 @@
21
"exports": {
22
".": "./src/index.ts",
23
"./jsx-runtime": "./src/jsx-runtime.ts",
24
+ "./jsx-dev-runtime": "./src/jsx-runtime.ts",
25
"./babel-plugin-transform-jsx": "./src/babel-plugin-transform-jsx.cjs"
26
},
27
"homepage": "https://github.com/plusnew/webcomponent#readme",
@@ -43,4 +44,4 @@
43
44
"prettier": "^3.3.3",
45
"typescript": "^5.7.0"
46
}
-}
47
+}
src/jsx-runtime.ts
@@ -2,7 +2,7 @@ import type { ShadowHostElement } from "./types";
2
import { PLUSNEW_ELEMENT_TYPE } from "./types";
3
4
export { Fragment } from "./types";
5
-export type { JSX } from "./types"
+export type { JSX } from "./types";
6
7
export function jsx(
8
type: string,
0 commit comments