mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-28 12:21:47 +01:00
11 lines
225 B
TypeScript
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/**'],
|
|
},
|
|
});
|