Skip to content

Commit

Permalink
fix types in build package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
rinrub authored and ruberino committed Aug 23, 2024
1 parent 7a601c4 commit 37c8ab1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,14 @@ export default defineConfig(({ command, isPreview }): UserConfig => {
repository: pkg.repository,
version: pkg.version,
module: 'refero.es.js',
types: 'types/src/index.d.ts',
types: 'types/index.d.ts',
license: pkg.license,
dependencies: pkg.dependencies,
peerDependencies: pkg.peerDependencies,
exports: {
'.': {
import: './refero.es.js',
types: './types/src/index.d.ts',
types: './types/index.d.ts',
},
},
}),
Expand Down

0 comments on commit 37c8ab1

Please sign in to comment.