Skip to content

Commit

Permalink
Merge pull request #12148 from CesiumGS/fix-package-json
Browse files Browse the repository at this point in the history
Fix package.json exports order
  • Loading branch information
ggetz authored Aug 23, 2024
2 parents bd61e26 + 17e144d commit 89d15af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
"./Build/*": "./Build/*",
"./Build/*.js": null,
".": {
"types": "./Source/Cesium.d.ts",
"require": "./index.cjs",
"import": "./Source/Cesium.js",
"types": "./Source/Cesium.d.ts"
"import": "./Source/Cesium.js"
}
},
"type": "module",
Expand Down

0 comments on commit 89d15af

Please sign in to comment.