babel-tailwind/vitest.config.mts
2025-01-24 01:29:15 -05:00

11 lines
211 B
TypeScript

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