diff --git a/vite.config.js b/vite.config.js index d2a66ce..6f48aa8 100644 --- a/vite.config.js +++ b/vite.config.js @@ -9,6 +9,13 @@ export default defineConfig({ environment: 'jsdom', setupFiles: './src/test/setup.js', reporters: ['json'], - outputFile: 'test.json' + outputFile: 'test.json', + exclude: [ + '**/node_modules/**', + '**/dist/**', + '**/cypress/**', + '.{idea,git,cache,output,temp}/**', + './src/config/**', + ] }, });