14 lines
241 B
TypeScript
14 lines
241 B
TypeScript
import {defineProject, mergeConfig} from "vitest/config";
|
|
|
|
import {baseConfig} from "./base";
|
|
|
|
export const uiConfig = mergeConfig(
|
|
baseConfig,
|
|
defineProject({
|
|
test: {
|
|
environment: "jsdom",
|
|
globals: true,
|
|
},
|
|
}),
|
|
);
|