lllin000_PaperForge/paperforge/plugin/vitest.config.ts
2026-05-24 17:29:06 +08:00

9 lines
178 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'jsdom',
include: ['tests/**/*.test.ts'],
globals: true,
},
});