mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-04 03:32:12 +02:00
15 lines
307 B
TypeScript
15 lines
307 B
TypeScript
import path from "path";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
include: ["**/*.test.ts"],
|
|
exclude: ["**/node_modules/**", "**/*.spec.ts"],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
});
|