15 lines
268 B
TypeScript
15 lines
268 B
TypeScript
|
|
import { defineConfig } from "vitest/config";
|
||
|
|
import path from "path";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
environment: "jsdom",
|
||
|
|
include: ["frontend/src/**/*.spec.ts"]
|
||
|
|
},
|
||
|
|
resolve: {
|
||
|
|
alias: {
|
||
|
|
"@": path.resolve(__dirname, "src")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
});
|