14 lines
428 B
TypeScript
14 lines
428 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) }, extensions: ['.ts', '.tsx', '.vue', '.js', '.jsx', '.json'] },
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
exclude: ['node_modules', 'dist', 'e2e']
|
|
}
|
|
})
|