Skip to content

Commit 5311d1a

Browse files
committed
fix(jsx): package json's export declarations
1 parent 21a58e1 commit 5311d1a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

client/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
22
"type": "commonjs",
33
"main": "./index.js",
4-
"react": "./react.js",
5-
"jsx": "./jsx.js",
6-
"types": "./index.d.ts"
4+
"types": "./index.d.ts",
5+
"exports": {
6+
"react": "./react.js",
7+
"jsx": "./jsx.js"
8+
}
79
}

0 commit comments

Comments
 (0)