mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 07:27:09 +08:00
11 lines
199 B
TypeScript
11 lines
199 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import Vue from '@vitejs/plugin-vue';
|
|
|
|
export default defineConfig({
|
|
plugins: [Vue()],
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
},
|
|
});
|