alef 0.25.7

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
{{ header }}import { defineConfig } from "vitest/config";

export default defineConfig({
	test: {
		include: ["tests/**/*.test.ts"],
		testTimeout: 30000,
		hookTimeout: 120000,
		teardownTimeout: 30000,
{% if with_global_setup %}		globalSetup: "./globalSetup.ts",
{% endif %}{% if with_file_setup %}		setupFiles: ["./setup.ts"],
{% endif %}	},
});