10 lines
143 B
TypeScript
10 lines
143 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
root: ".",
|
|
test: {
|
|
clearMocks: true,
|
|
globals: true,
|
|
},
|
|
});
|