Files
vue-tui/vite.config.ts
T

13 lines
223 B
TypeScript
Raw Normal View History

2026-05-24 18:13:22 +08:00
import { defineConfig } from "vite-plus";
export default defineConfig({
staged: {
"*": "vp check --fix",
},
fmt: {},
lint: { options: { typeAware: true, typeCheck: false } },
2026-05-24 18:13:22 +08:00
run: {
cache: true,
},
});