Files
vue-tui/packages/runtime/vite.config.ts
T

16 lines
319 B
TypeScript
Raw Normal View History

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