blob: 8862852c8ef40dc9eb5d455cd489feeb08bffac1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import react from "@vitejs/plugin-react";
import tsconfigPaths from "vite-tsconfig-paths";
import { defineConfig } from "vitest/config";
export default defineConfig({
plugins: [react(), tsconfigPaths()],
test: {
include: ["app/**/*.test.{ts,tsx}"],
},
});
|