import { defineConfig } from "vitest/config"; import pkg from "./package.json" with { type: "json" }; export default defineConfig({ test: {}, define: { __PKG_NAME__: JSON.stringify(pkg.name), }, });