2026-05-24 18:13:47 +08:00
|
|
|
import { defineConfig } from "vite-plus";
|
|
|
|
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [vueJsx()],
|
|
|
|
|
pack: {
|
2026-05-24 22:58:29 +08:00
|
|
|
dts: true,
|
2026-05-24 18:13:47 +08:00
|
|
|
exports: true,
|
|
|
|
|
},
|
|
|
|
|
lint: {
|
|
|
|
|
options: { typeAware: true, typeCheck: true },
|
|
|
|
|
},
|
|
|
|
|
fmt: {},
|
|
|
|
|
});
|