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 bcd210f commit 0327a51Copy full SHA for 0327a51
packages/plugin/package.json
@@ -5,8 +5,18 @@
5
"author": "Dotan Simha <[email protected]>",
6
"license": "MIT",
7
"sideEffects": false,
8
- "main": "dist/index.cjs.js",
9
- "module": "dist/index.esm.js",
+ "main": "dist/index.js",
+ "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
20
"typings": "dist/index.d.ts",
21
"typescript": {
22
"definition": "dist/index.d.ts"
0 commit comments