Skip to content

Commit

Permalink
fix: update bundle file extensions (closes #15)
Browse files Browse the repository at this point in the history
  • Loading branch information
dm4t2 committed Oct 24, 2022
1 parent 0d7025e commit 8eb38a3
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions package.json
Expand Up @@ -3,16 +3,14 @@
"description": "Easy input of formatted numbers based on the ECMAScript Internationalization API (ECMA-402).",
"version": "1.3.0",
"license": "MIT",
"module": "./dist/index.esm.js",
"main": "./dist/index.cjs.js",
"module": "./dist/index.mjs",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"files": ["dist"],
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
Expand Down

0 comments on commit 8eb38a3

Please sign in to comment.