| 12345678910111213141516171819202122232425 |
- import { defineConfig } from "vitest/config";
- import path from "path";
- export default defineConfig({
- resolve: {
- // Deduplicate React and Vue so tests don't get two copies
- // (pnpm strict resolution can cause packages to resolve different copies)
- alias: {
- react: path.resolve(__dirname, "node_modules/react"),
- "react-dom": path.resolve(__dirname, "node_modules/react-dom"),
- vue: path.resolve(__dirname, "packages/vue/node_modules/vue"),
- },
- },
- test: {
- globals: true,
- environment: "jsdom",
- include: ["packages/**/*.test.ts", "packages/**/*.test.tsx"],
- coverage: {
- provider: "v8",
- reporter: ["text", "json", "html"],
- include: ["packages/*/src/**/*.{ts,tsx}"],
- exclude: ["**/*.test.{ts,tsx}", "**/index.ts"],
- },
- },
- });
|