Skip to content

Commit

Permalink
Fix ES exports
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbouchenoire committed Nov 29, 2021
1 parent 197224f commit cf0259d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions packages/symbolist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,16 @@
"sideEffects": false,
"source": "./src/index.ts",
"main": "./dist/symbolist.js",
"unpkg": "./dist/symbolist.umd.js",
"module": "./dist/symbolist.module.js",
"modern": "./dist/symbolist.mjs",
"exports": {
".": {
"require": "./dist/symbolist.js",
"import": "./dist/symbolist.modern.js",
"types": "./dist/index.d.ts"
}
"types": "./dist/index.d.ts",
"module": "./dist/symbolist.module.js",
"import": "./dist/symbolist.mjs",
"default": "./dist/symbolist.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"lint-staged": {
Expand Down

0 comments on commit cf0259d

Please sign in to comment.