mirror of
https://github.com/morten-olsen/reservoir.git
synced 2026-02-07 17:36:24 +01:00
13 lines
311 B
TypeScript
13 lines
311 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import { getAliases } from '@morten-olsen/reservoir-tests/vitest';
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default defineConfig(async () => {
|
|
const aliases = await getAliases();
|
|
return {
|
|
resolve: {
|
|
alias: aliases,
|
|
},
|
|
};
|
|
});
|