mirror of
https://github.com/directus/directus.git
synced 2026-01-28 07:48:04 -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>
19 lines
387 B
JavaScript
19 lines
387 B
JavaScript
import { defineConfig } from 'vitest/config';
|
|
import path from 'path';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globalSetup: 'globalSetup.js',
|
|
alias: [
|
|
// TODO: Remove this after moving to ESM
|
|
{
|
|
find: '@directus/format-title',
|
|
replacement: path.resolve(__dirname, '../app/node_modules/@directus/format-title'),
|
|
},
|
|
],
|
|
deps: {
|
|
interopDefault: true,
|
|
},
|
|
},
|
|
});
|