Skip to content

Commit c9cc696

Browse files
committed
chore: update main bundler config
1 parent 7066517 commit c9cc696

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bundler.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ import { defineConfig, resolvePaths } from '@hypernym/bundler'
33
export default defineConfig({
44
entries: [
55
{ input: './src/index.js' },
6-
{ dts: './src/types/index.ts' },
6+
{ dts: './src/types/index.ts', output: './dist/index.d.mts' },
77
{
88
input: './src/svelte/index.js',
99
externals: ['../index.js'],
1010
paths: resolvePaths([
1111
{ find: '../index.js', replacement: '../index.mjs' },
1212
]),
1313
},
14-
{ dts: './src/types/svelte/index.ts' },
14+
{ dts: './src/types/svelte/index.ts', output: './dist/svelte/index.d.mts' },
1515
],
1616
})

0 commit comments

Comments
 (0)