mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
15 lines
315 B
TypeScript
15 lines
315 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
tsconfigPaths({
|
|
root: ".",
|
|
ignoreConfigErrors: true,
|
|
}) as any,
|
|
],
|
|
test: {
|
|
include: ["**/*.vi-test.ts", "**/*.vitest.ts"],
|
|
},
|
|
});
|