import { defineConfig } from 'vitest/config'
import { sharedTestConfig } from '../../vitest.shared'

export default defineConfig({
  test: {
    ...sharedTestConfig,
    globals: true,
    environment: 'node',
    include: ['test/**/*.test.ts'],
  },
})
