mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-28 14:01:28 -04:00
8 lines
175 B
JavaScript
8 lines
175 B
JavaScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
exclude: ['src/test/blocks-generated/**/*.test.js', 'dist', 'node_modules']
|
|
}
|
|
});
|