11 lines
211 B
TypeScript
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),
|
|
},
|
|
});
|