9 lines
142 B
TypeScript
9 lines
142 B
TypeScript
import { defineConfig } from "vitest/config"
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["**/*.test.ts"],
|
|
globals: true
|
|
}
|
|
})
|