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 951d705 commit bb1e471Copy full SHA for bb1e471
.changeset/large-bikes-fail.md
@@ -0,0 +1,5 @@
1
+---
2
+'@module-federation/utilities': minor
3
4
+
5
+Expose esm from the package json
packages/utilities/package.json
@@ -1,8 +1,8 @@
{
"name": "@module-federation/utilities",
"version": "3.0.39",
- "type": "commonjs",
"main": "./dist/index.cjs.js",
+ "module": "./dist/index.esm.js",
6
"types": "./dist/index.cjs.d.ts",
7
"license": "MIT",
8
"publishConfig": {
@@ -36,7 +36,11 @@
36
}
37
},
38
"exports": {
39
- ".": "./dist/index.cjs.js",
+ ".": {
40
+ "types": "./dist/index.cjs.d.ts",
41
+ "import": "./dist/index.esm.js",
42
+ "require": "./dist/index.cjs.js"
43
+ },
44
"./package.json": "./package.json"
45
46
"typesVersions": {
0 commit comments