Files
yaak/vite.config.ts
Gregory Schier e4103f1a4a Fix some lint
2026-03-13 07:36:26 -07:00

11 lines
225 B
TypeScript

import { defineConfig } from 'vite-plus';
export default defineConfig({
lint: {
ignorePatterns: ['npm/**', 'crates/yaak-templates/pkg/**'],
},
test: {
exclude: ['**/node_modules/**', '**/flatpak/**'],
},
});