mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-01-10 19:05:09 +00:00
11 lines
296 B
JavaScript
11 lines
296 B
JavaScript
|
import { defineConfig } from 'vitest/config'
|
||
|
import react from '@vitejs/plugin-react'
|
||
|
import tsconfigPaths from 'vite-tsconfig-paths'
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [tsconfigPaths(), react()],
|
||
|
test: {
|
||
|
environment: "jsdom",
|
||
|
setupFiles: ["src/__tests__/setupTests.ts"]
|
||
|
},
|
||
|
})
|