mirror of
https://github.com/SawyerHood/dev-browser.git
synced 2026-09-20 13:44:44 +08:00
9 lines
176 B
TypeScript
9 lines
176 B
TypeScript
|
|
import { defineConfig } from "vitest/config";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
include: ["src/**/*.test.ts"],
|
||
|
|
exclude: ["dist/**", "node_modules/**"],
|
||
|
|
},
|
||
|
|
});
|