|
@@ -6,6 +6,14 @@ export default defineConfig({
|
|
|
plugins: [Vue(), VueJsx()],
|
|
plugins: [Vue(), VueJsx()],
|
|
|
test: {
|
|
test: {
|
|
|
environment: 'happy-dom',
|
|
environment: 'happy-dom',
|
|
|
- exclude: [...configDefaults.exclude, '**/e2e/**'],
|
|
|
|
|
|
|
+ exclude: [
|
|
|
|
|
+ ...configDefaults.exclude,
|
|
|
|
|
+ '**/e2e/**',
|
|
|
|
|
+ '**/dist/**',
|
|
|
|
|
+ '**/.{idea,git,cache,output,temp}/**',
|
|
|
|
|
+ '**/node_modules/**',
|
|
|
|
|
+ '**/{stylelint,eslint}.config.*',
|
|
|
|
|
+ '.prettierrc.mjs'
|
|
|
|
|
+ ],
|
|
|
},
|
|
},
|
|
|
});
|
|
});
|