Files
maaw/vitest.config.ts
2023-11-28 00:28:19 +11:00

15 lines
285 B
TypeScript

import path from 'path';
import { fileURLToPath } from 'url';
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
// ... Specify options here.
},
resolve: {
alias: {
'~~': fileURLToPath(new URL('./', import.meta.url))
}
}
});