···1+import { setup } from "@ark/attest";
2+3+// config options can be passed here
4+export default () =>
5+ setup({
6+ // Set to true during development to skip type checking (faster)
7+ skipTypes: false,
8+9+ // Fail if benchmarks deviate by more than 20%
10+ benchPercentThreshold: 20,
11+ });
+2
packages/prototypey/src/index.ts
···00
···1+export * from "./lib.ts";
2+export * from "./infer.ts";