mirror of
https://github.com/sern-handler/tools
synced 2026-06-28 02:32:22 +00:00
10 lines
184 B
TypeScript
10 lines
184 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
includeSource: ["src/**/*.{js,ts}"]
|
|
},
|
|
})
|