21 lines
418 B
TypeScript
21 lines
418 B
TypeScript
|
|
import path from "node:path";
|
||
|
|
import { defineConfig } from "vitest/config";
|
||
|
|
import react from "@vitejs/plugin-react";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
resolve: {
|
||
|
|
alias: {
|
||
|
|
"@": path.resolve(__dirname, "./src"),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
test: {
|
||
|
|
environment: "jsdom",
|
||
|
|
setupFiles: ["./tests/setupTests.ts"],
|
||
|
|
globals: true,
|
||
|
|
coverage: {
|
||
|
|
reporter: ["text", "lcov"],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|