mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-21 19:39:28 -05:00
5970ff917f
Co-authored-by: Dhruwang <dhruwangjariwala18@gmail.com> Co-authored-by: Dhruwang Jariwala <67850763+Dhruwang@users.noreply.github.com>
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
import tsconfigPaths from "vite-tsconfig-paths";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
exclude: ["playwright/**", "node_modules/**"],
|
|
setupFiles: ["../../packages/lib/vitestSetup.ts"],
|
|
},
|
|
plugins: [tsconfigPaths()],
|
|
});
|