import { defineConfig } from "vite-plus"; import vueJsx from "@vitejs/plugin-vue-jsx"; export default defineConfig({ plugins: [vueJsx()], pack: { dts: true, exports: true, }, lint: { options: { typeAware: true, typeCheck: true }, }, fmt: {}, });