| 12345678910111213141516 |
- import { defineConfig } from 'vite';
- import react from '@vitejs/plugin-react';
- export default defineConfig({
- plugins: [react()],
- test: {
- globals: true,
- environment: 'node',
- include: ['src/__tests__/**/*.test.js'],
- coverage: {
- provider: 'v8',
- reporter: ['text', 'html'],
- include: ['src/geometry.js', 'src/constants.js'],
- },
- },
- });
|