mirror of
https://github.com/mandiant/capa.git
synced 2025-12-29 06:03:52 -08:00
12 lines
331 B
JavaScript
12 lines
331 B
JavaScript
import { defineConfig } from 'vitest/config'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
exclude: ['node_modules', 'dist', '.idea', '.git', '.cache'],
|
|
include: ['src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
|
|
}
|
|
}) |