/// import { defineConfig } from 'vitest/config'; import Vue from '@vitejs/plugin-vue'; export default defineConfig({ plugins: [Vue()], test: { globals: true, watch: false, include: ['tests/**/*-test.ts'], environment: 'jsdom', }, });