| 12345678910111213 |
- import tsconfigPaths from 'vite-tsconfig-paths';
- import { defineProject } from 'vitest/config';
- export default defineProject({
- plugins: [
- tsconfigPaths(),
- ],
- test: {
- environment: 'node',
- exclude: ['**/test/**'],
- clearMocks: true,
- },
- });
|