aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/vitest.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/vitest.config.ts')
-rw-r--r--frontend/vitest.config.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/frontend/vitest.config.ts b/frontend/vitest.config.ts
new file mode 100644
index 0000000..ab1f2c3
--- /dev/null
+++ b/frontend/vitest.config.ts
@@ -0,0 +1,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}"],
+ },
+});