Server/project/vitest.config.ts

20 lines
501 B
TypeScript
Raw Normal View History

/* eslint-disable @typescript-eslint/naming-convention */
import path from "path";
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
name: "spt-server",
root: "./tests",
environment: "./CustomEnvironment.ts",
globals: true,
2023-10-30 03:19:49 +01:00
typecheck: {
enabled: true
},
alias: {
"@spt-aki": path.resolve(__dirname, "src"),
"@tests": path.resolve(__dirname, "tests")
}
}
});