import { defineConfig } from "vitest/config"; export default defineConfig({ test: { passWithNoTests: true, exclude: [ "**/node_modules/**", "**/dist/**", "**/.output/**", "**/.{idea,git,cache,output,temp}/**", ], }, });