mirror of
https://github.com/linkwarden/linkwarden.git
synced 2026-04-18 12:09:44 +00:00
8 lines
160 B
TypeScript
8 lines
160 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
exclude: ["**/node_modules/**", "**/dist/**", "**/e2e/**"],
|
|
},
|
|
});
|