Skip to content

Commit 0327a51

Browse files
authored
Fix Bob issue (#574)
1 parent bcd210f commit 0327a51

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

packages/plugin/package.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,18 @@
55
"author": "Dotan Simha <[email protected]>",
66
"license": "MIT",
77
"sideEffects": false,
8-
"main": "dist/index.cjs.js",
9-
"module": "dist/index.esm.js",
8+
"main": "dist/index.js",
9+
"module": "dist/index.mjs",
10+
"exports": {
11+
".": {
12+
"require": "./dist/index.js",
13+
"import": "./dist/index.mjs"
14+
},
15+
"./*": {
16+
"require": "./dist/*.js",
17+
"import": "./dist/*.mjs"
18+
}
19+
},
1020
"typings": "dist/index.d.ts",
1121
"typescript": {
1222
"definition": "dist/index.d.ts"

0 commit comments

Comments
 (0)