mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-03-21 09:44:09 -05:00
14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
import { fileURLToPath, URL } from 'url';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
|
},
|
|
},
|
|
test: {
|
|
include: ['app/**/*.test.mjs', 'src/**/*.test.{js,mjs}'],
|
|
},
|
|
});
|