mirror of
https://github.com/documenso/documenso.git
synced 2026-08-15 02:53:32 +10:00
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
import macrosPlugin from 'vite-plugin-babel-macros';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
// Transform lingui macros (e.g. `msg`) used by the code under test.
|
|
plugins: [macrosPlugin()],
|
|
test: {
|
|
include: ['**/*.test.ts'],
|
|
},
|
|
});
|