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

15 lines
281 B
TypeScript
Raw Normal View History

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