vitest.config.ts 262 B

12345678910111213
  1. import tsconfigPaths from 'vite-tsconfig-paths';
  2. import { defineProject } from 'vitest/config';
  3. export default defineProject({
  4. plugins: [
  5. tsconfigPaths(),
  6. ],
  7. test: {
  8. environment: 'node',
  9. exclude: ['**/test/**'],
  10. clearMocks: true,
  11. },
  12. });