import { defineConfig } from 'vitest/config';

// https://vitest.dev/config/
export default defineConfig({
  test: {
    // Include both .ts and .mts files for tests
    include: ['src/**/*.{vtest,vitest}.{ts,tsx,mts,mtsx}'],
    setupFiles: ['./vitest.setup.mts'],
    typecheck: {
      enabled: true,
    },
  },
});
