mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-15 01:54:06 -08:00
12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
|
import { defineConfig } from "vitest/config";
|
||
|
import react from "@vitejs/plugin-react";
|
||
|
|
||
|
export default defineConfig({
|
||
|
plugins: [react()],
|
||
|
test: {
|
||
|
globals: true,
|
||
|
environment: "jsdom",
|
||
|
setupFiles: "./src/setupTests.ts",
|
||
|
},
|
||
|
});
|