vitest/examples/lit/vite.config.ts
Anthony Fu 0896344c7e
fix!: drop support for Vite 2 (#1928)
* fix: drop support for Vite 2

* chore: lock

* chore: fix lit test

* chore: fix lit test

Co-authored-by: Vladimir Sheremet <sleuths.slews0s@icloud.com>
2022-10-07 13:44:10 +02:00

12 lines
194 B
TypeScript

/// <reference types="vitest" />
import { defineConfig } from 'vite'
// https://vitejs.dev/config/
export default defineConfig({
test: {
globals: true,
environment: 'jsdom',
},
})