mirror of
https://github.com/mandiant/capa.git
synced 2025-12-12 15:49:46 -08:00
13 lines
356 B
JavaScript
13 lines
356 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}"]
|
|
}
|
|
});
|