Skip to content

Commit

Permalink
Fix #1519 package.json exports order
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic100 committed Dec 18, 2024
1 parent 20907f5 commit 267c8bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/templates/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ export const packageJson = (pkg: any) => {
exports: {
'.': {
import: {
types: './index.d.mts',
default: './index.module.js',
type: './index.d.mts',
},
require: {
types: './index.d.ts',
default: './index.cjs',
type: './index.d.ts',
},
},
},
Expand Down

0 comments on commit 267c8bf

Please sign in to comment.