Files

18 lines
240 B
TypeScript
Raw Permalink Normal View History

2026-05-28 18:37:07 +08:00
import { defineConfig } from "vite-plus";
export default defineConfig({
pack: {
minify: true,
2026-05-28 18:37:07 +08:00
dts: {
tsgo: true,
},
},
lint: {
options: {
typeAware: true,
typeCheck: true,
},
},
fmt: {},
});