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