0xSparked's picture
Upload folder using huggingface_hub
db14b86
raw
history blame contribute delete
244 Bytes
import { defineConfig } from 'vitest/config';
import { name } from './package.json';
export default defineConfig({
test: {
alias: {
'@': './src',
[name]: './src',
},
environment: 'jsdom',
globals: true,
},
});