mirror of
https://github.com/LukeHagar/form.git
synced 2025-12-06 04:19:43 +00:00
* chore: inital work to migrate to Query's alpha package setup * chore: update deps * chore: fix build issues * chore: disable no-children-prop rule
13 lines
239 B
TypeScript
13 lines
239 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
name: 'react-form',
|
|
dir: './src',
|
|
watch: false,
|
|
environment: 'jsdom',
|
|
globals: true,
|
|
coverage: { provider: 'istanbul' },
|
|
},
|
|
})
|