UNPKG

@tanstack/react-query

Version:

Hooks for managing, caching and syncing asynchronous and remote data in React

14 lines (12 loc) 330 B
import { defineConfig } from 'vitest/config' import packageJson from './package.json' export default defineConfig({ test: { name: packageJson.name, dir: './src', watch: false, globals: true, coverage: { enabled: true, provider: 'istanbul', include: ['src/**/*'] }, typecheck: { enabled: true }, }, })