mirror of
https://github.com/Choices-js/Choices.git
synced 2026-03-14 14:45:47 +01:00
13 lines
297 B
TypeScript
13 lines
297 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
setupFiles: ['./test/setupFiles/window-matchMedia.ts'],
|
|
include: ['test/**/*.{test,spec}.?(c|m)[jt]s?(x)'],
|
|
},
|
|
esbuild: {
|
|
target: 'es2017',
|
|
},
|
|
});
|