chore(client): rename vitest config to .mts (ESM)

This commit is contained in:
Corentin JOGUET 2026-05-08 10:44:15 +02:00
parent 4cf04080cf
commit 44bfd5d616

View file

@ -1,20 +0,0 @@
/// <reference types="vitest" />
import { defineConfig } from "vitest/config";
import react from "@vitejs/plugin-react";
import * as path from "path";
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
test: {
environment: "jsdom",
globals: true,
setupFiles: ["./src/test-setup.ts"],
include: ["src/**/__tests__/**/*.test.{ts,tsx}"],
css: false,
},
});