mirror of
https://github.com/forcedotcom/afv-library.git
synced 2026-07-30 11:43:26 +08:00
12 lines
242 B
TypeScript
12 lines
242 B
TypeScript
|
|
import { defineConfig } from 'vitest/config';
|
||
|
|
import react from '@vitejs/plugin-react';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
test: {
|
||
|
|
globals: true,
|
||
|
|
environment: 'jsdom',
|
||
|
|
setupFiles: './vitest.setup.ts',
|
||
|
|
},
|
||
|
|
});
|