Implement config resolution, typed errors, HTTP and WebSocket transport helpers, and timeout handling for the SDK foundation. Add unit and local integration tests covering the SDK foundation behaviour and align package exports with the tsup output.
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "node",
|
|
exclude: ["**/node_modules/**", "**/dist/**"],
|
|
hookTimeout: 10_000,
|
|
include: ["tests/integration/**/*.test.ts"],
|
|
testTimeout: 10_000,
|
|
},
|
|
});
|