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