chore: 初始化租户端(vben web-ele)
This commit is contained in:
19
vitest.config.ts
Normal file
19
vitest.config.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import Vue from '@vitejs/plugin-vue';
|
||||
import VueJsx from '@vitejs/plugin-vue-jsx';
|
||||
import { configDefaults, defineConfig } from 'vitest/config';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [Vue(), VueJsx()],
|
||||
test: {
|
||||
environment: 'happy-dom',
|
||||
exclude: [
|
||||
...configDefaults.exclude,
|
||||
'**/e2e/**',
|
||||
'**/dist/**',
|
||||
'**/.{idea,git,cache,output,temp}/**',
|
||||
'**/node_modules/**',
|
||||
'**/{stylelint,eslint}.config.*',
|
||||
'.prettierrc.mjs',
|
||||
],
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user