blob: ab1f2c30f89970c027c06832b933d1ecfd312932 (
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}"],
},
});
|