mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 12:25:22 +00:00
10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
|
|
import { defineConfig } from 'vitest/config'
|
||
|
|
import tsconfigPaths from 'vite-tsconfig-paths'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [tsconfigPaths()],
|
||
|
|
test: {
|
||
|
|
environment: 'jsdom',
|
||
|
|
watch: false,
|
||
|
|
},
|
||
|
|
})
|