tomodachi-share/frontend/vitest.config.ts
Lepre-CHAU-n 13b2bef574 feat: mii edit UX, a11y fixes, and frontend unit tests
- API: return success message on mii edit
- FE: flash banner + helpers, submit response helper, Vitest
- A11y: labels, alt text, banner close; css checkerboard class
- DX: root tsconfig refs, strict/tsconfig, next dev --webpack

Made-with: Cursor
2026-04-29 00:25:17 -07:00

11 lines
280 B
TypeScript

import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
import { defineConfig } from "vitest/config";
export default defineConfig({
plugins: [react(), tailwindcss()],
test: {
include: ["src/**/*.test.{ts,tsx}"],
environment: "jsdom",
},
});