16 lines
249 B
TypeScript
16 lines
249 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'happy-dom',
|
|
},
|
|
esbuild: {
|
|
tsconfigRaw: {
|
|
compilerOptions: {
|
|
jsx: 'react-jsx',
|
|
},
|
|
},
|
|
},
|
|
});
|