Files
yaak-mountain-loop/vite.config.ts
2026-05-13 14:22:43 -07:00

20 lines
403 B
TypeScript

import { defineConfig } from "vite-plus";
export default defineConfig({
staged: {
"*": "vp check --fix",
},
lint: {
ignorePatterns: ["npm/**", "crates/yaak-templates/pkg/**", "**/bindings/gen_*.ts"],
options: {
typeAware: true,
},
rules: {
"typescript/no-explicit-any": "error",
},
},
test: {
exclude: ["**/node_modules/**", "**/flatpak/**"],
},
});