UNPKG

react-email

Version:

A live preview of your emails right in your browser.

18 lines (16 loc) 344 B
import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, environment: 'happy-dom', include: ['**/e2e/**/*.{test,spec}.?(c|m)[jt]s?(x)'], exclude: ['**/node_modules/**'], }, esbuild: { tsconfigRaw: { compilerOptions: { jsx: 'react-jsx', }, }, }, });