mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
19 lines
281 B
TypeScript
19 lines
281 B
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig(() => {
|
|
return {
|
|
esbuild: {
|
|
jsxInject: 'import React from \'react\'',
|
|
},
|
|
test: {
|
|
deps: {
|
|
inline: [
|
|
|
|
],
|
|
},
|
|
environment: 'jsdom',
|
|
global: true,
|
|
},
|
|
}
|
|
})
|