mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-19 10:07:46 -05:00
8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
exclude: ['src/test/blocks-generated/**/*.test.js', 'dist']
|
|
}
|
|
});
|