Skip to content

Commit

Permalink
Merge pull request #714 from tighten/fix-package-json
Browse files Browse the repository at this point in the history
Fix package.json module and exports
  • Loading branch information
bakerkretzmar authored Feb 20, 2024
2 parents 28a49eb + a0d7ebb commit cad6e2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
],
"type": "module",
"source": "./src/js/index.js",
"exports": "./dist/ziggy.js",
"module": "./dist/ziggy.esm.js",
"exports": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./src/js/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:umd",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"module": "ESNext",
"moduleResolution": "Bundler"
},
"exclude": ["vendor"]
"exclude": ["vendor", "tests/fixtures"]
}

0 comments on commit cad6e2f

Please sign in to comment.