mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-10 01:29:30 +02:00
16 lines
426 B
TypeScript
16 lines
426 B
TypeScript
/// <reference types="vitest" />
|
|
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react-swc';
|
|
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
|
|
// https://vitejs.dev/config https://vitest.dev/config
|
|
export default defineConfig({
|
|
plugins: [react(), tsconfigPaths()],
|
|
test: {
|
|
globals: true,
|
|
environment: 'happy-dom',
|
|
setupFiles: '.vitest/setup',
|
|
include: ['**/*.test.{ts,tsx}']
|
|
}
|
|
});
|