14 lines
311 B
TypeScript
14 lines
311 B
TypeScript
|
|
import react from "@vitejs/plugin-react";
|
||
|
|
import { defineConfig } from "vitest/config";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
test: {
|
||
|
|
environment: "jsdom",
|
||
|
|
globals: true,
|
||
|
|
setupFiles: ["./src/setupTests.ts"],
|
||
|
|
css: true,
|
||
|
|
exclude: ["tests/e2e/**", "node_modules/**"],
|
||
|
|
},
|
||
|
|
});
|