1import tsconfigPaths from "vite-tsconfig-paths"; 2import { defineConfig } from "vitest/config"; 3 4export default defineConfig({ 5 test: { 6 coverage: { 7 exclude: ["**/node_modules/**", "**/index.ts"], 8 }, 9 globals: true, 10 restoreMocks: true, 11 }, 12 plugins: [tsconfigPaths()], 13});