Files
form/packages/react-form/vitest.config.ts
Corbin Crutchley 74ac9f4b9c Update build tooling (#401)
* chore: inital work to migrate to Query's alpha package setup

* chore: update deps

* chore: fix build issues

* chore: disable no-children-prop rule
2023-07-04 21:06:03 -06:00

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' },
},
})