13 lines
349 B
TypeScript
13 lines
349 B
TypeScript
import path from 'node:path';
|
|
|
|
import { defineConfig } from 'vitest/config';
|
|
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
|
|
export default defineConfig({
|
|
plugins: [tsconfigPaths({ projects: [path.resolve(__dirname, '../../tsconfig.paths.json')] })],
|
|
test: {
|
|
environment: 'node',
|
|
include: ['test/**/*.test.ts'],
|
|
},
|
|
});
|