noteshare.space/server/vite.config.ts

10 lines
210 B
TypeScript
Raw Permalink Normal View History

import { defineConfig } from "vitest/config";
import tsconfigPaths from "vite-tsconfig-paths";
export default defineConfig({
plugins: [tsconfigPaths()],
2022-07-09 14:22:36 +03:00
test: {
include: ["src/**/*.test.ts"],
2022-07-09 14:22:36 +03:00
},
});