15 lines
467 B
TypeScript
15 lines
467 B
TypeScript
/// <reference types="vitest" />
|
|
/// <reference types="vite/client" />
|
|
|
|
import { defineProject } from "vitest/config";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
export default defineProject({
|
|
plugins: [tsconfigPaths()],
|
|
test: {
|
|
globals: true,
|
|
include: ["./**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
|
|
watchExclude: [".*\\/node_modules\\/.*", ".*\\/build\\/.*"],
|
|
exclude: ["node_modules", "dist", ".idea", ".git", ".cache"],
|
|
},
|
|
}); |