forked from mirrors/thatmattlove-hyperglass
18 lines
349 B
TypeScript
18 lines
349 B
TypeScript
/// <reference types="vitest" />
|
|
|
|
import path from 'node:path';
|
|
import { defineConfig } from 'vitest/config';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
environment: 'jsdom',
|
|
globals: true,
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'~': path.resolve(__dirname, './'),
|
|
},
|
|
},
|
|
});
|