···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+ });