mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 16:45:22 +00:00
11 lines
221 B
TypeScript
11 lines
221 B
TypeScript
import type { ViteUserConfig } from 'vitest/config'
|
|
import { defineConfig } from 'vitest/config'
|
|
|
|
const config: ViteUserConfig = defineConfig({
|
|
test: {
|
|
include: ['test/**/*.test.ts'],
|
|
},
|
|
})
|
|
|
|
export default config
|