mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 16:45:22 +00:00
15 lines
314 B
TypeScript
15 lines
314 B
TypeScript
import path from "node:path";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
resolve: {
|
|
alias: {
|
|
"#src": path.resolve(import.meta.dirname, "src"),
|
|
"#test": path.resolve(import.meta.dirname, "test"),
|
|
},
|
|
},
|
|
test: {
|
|
include: ["test/**/*.test.ts"],
|
|
},
|
|
});
|