mirror of
https://github.com/directus/directus.git
synced 2026-01-28 04:38:21 -05:00
* Update versions * Fix usage of fullcalendar * Patch Tuesday Additions 🐸🐸 (#16878) * Interop default in vitest * Update exif-reader * remove deprecated @types/pino * remove old "grant" package type shim * Small clean-up of dependencies (#16576) * Remove outdated type deps & update concurrently * fix lock file Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com> Co-authored-by: Pascal Jufer <pascal-jufer@bluewin.ch> Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com>
10 lines
134 B
JavaScript
10 lines
134 B
JavaScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
deps: {
|
|
interopDefault: true,
|
|
},
|
|
},
|
|
});
|