mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-09 09:16:35 +02:00
16 lines
420 B
TypeScript
16 lines
420 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}']
|
|
}
|
|
})
|