From 99c24b5cd8a5cba3c0e325bad95492587e6079de Mon Sep 17 00:00:00 2001 From: fourdim <59462000+fourdim@users.noreply.github.com> Date: Sun, 30 Jul 2023 21:19:59 +0800 Subject: [PATCH] chore: add the missing d.ts file for y-indexeddb (#3467) --- packages/y-indexeddb/vite.config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/y-indexeddb/vite.config.ts b/packages/y-indexeddb/vite.config.ts index 64f40beb49..e38ab9b59e 100644 --- a/packages/y-indexeddb/vite.config.ts +++ b/packages/y-indexeddb/vite.config.ts @@ -21,5 +21,9 @@ export default defineConfig({ external: ['idb', 'yjs'], }, }, - plugins: [dts()], + plugins: [ + dts({ + entryRoot: resolve(__dirname, 'src'), + }), + ], });