-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvitest.config.ts
More file actions
19 lines (17 loc) · 789 Bytes
/
Copy pathvitest.config.ts
File metadata and controls
19 lines (17 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { fileURLToPath } from "node:url";
import { defineConfig } from "vitest/config";
export default defineConfig({
resolve: {
alias: {
"@martin/adapters": fileURLToPath(new URL("./packages/adapters/src/index.ts", import.meta.url)),
"@martin/benchmarks": fileURLToPath(new URL("./benchmarks/src/index.ts", import.meta.url)),
"@martin/cli": fileURLToPath(new URL("./packages/cli/src/index.ts", import.meta.url)),
"@martin/contracts": fileURLToPath(new URL("./packages/contracts/src/index.ts", import.meta.url)),
"@martin/core": fileURLToPath(new URL("./packages/core/src/index.ts", import.meta.url)),
"@martinloop/mcp": fileURLToPath(new URL("./packages/mcp/src/index.ts", import.meta.url))
}
},
test: {
testTimeout: 15_000
}
});