mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 22:44:30 +00:00
13 lines
362 B
TypeScript
13 lines
362 B
TypeScript
import react from "@vitejs/plugin-react";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
plugins: [tsconfigPaths(), react()],
|
|
test: {
|
|
include: ["src/**/*.test.ts", "src/**/*.test.tsx"],
|
|
environment: "jsdom",
|
|
setupFiles: ["@testing-library/jest-dom/vitest"],
|
|
},
|
|
});
|