15 lines
235 B
TypeScript
15 lines
235 B
TypeScript
import swc from 'unplugin-swc';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
root: './',
|
|
},
|
|
plugins: [
|
|
swc.vite({
|
|
module: { type: 'es6' },
|
|
}),
|
|
],
|
|
});
|