We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2973ced commit a4092e6Copy full SHA for a4092e6
packages/vue/package.json
@@ -31,6 +31,7 @@
31
"@vitejs/plugin-vue": "^5.0.5",
32
"typescript": "^5.2.2",
33
"vite": "^5.3.4",
34
+ "vite-plugin-dts": "4.0.0-beta.1",
35
"vue": "^3.4.31",
36
"vue-tsc": "^2.0.24"
37
},
packages/vue/vite.config.js
@@ -1,8 +1,9 @@
1
import { defineConfig } from 'vite'
2
import vue from '@vitejs/plugin-vue'
3
+import dts from 'vite-plugin-dts'
4
5
export default defineConfig({
- plugins: [vue()],
6
+ plugins: [vue(), dts()],
7
build: {
8
lib: {
9
entry: 'src/index.ts',
0 commit comments