UNPKG

@plasius/react-state

Version:

Tiny, testable, typesafe React Scoped Store helper.

21 lines (19 loc) 430 B
import { defineConfig } from "vitest/config"; export default defineConfig({ test: { environment: "jsdom", globals: true, include: ["tests/**/*.test.{ts,tsx}"], coverage: { provider: "v8", reporter: ["text", "lcov"], reportsDirectory: "./coverage", exclude: [ "tests/**", "dist/**", "**/*.config.{js,ts}", "**/.eslintrc.{js,cjs}", ], }, }, });