12 lines
255 B
TypeScript
12 lines
255 B
TypeScript
|
|
import { defineConfig } from "vitest/config";
|
||
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [tsconfigPaths()],
|
||
|
|
test: {
|
||
|
|
environment: "node",
|
||
|
|
globals: true,
|
||
|
|
include: ["test/**/*.test.ts"],
|
||
|
|
},
|
||
|
|
});
|