mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-08-19 21:11:45 +10:00
11 lines
370 B
TypeScript
11 lines
370 B
TypeScript
import { fileURLToPath } from "node:url";
|
|
// @boundaries-ignore root shared Vitest config
|
|
import { createVitestProjectConfig } from "../../vitest.shared";
|
|
|
|
const config = createVitestProjectConfig({
|
|
name: "@reactive-resume/pdf",
|
|
dirname: fileURLToPath(new URL(".", import.meta.url)),
|
|
});
|
|
|
|
export default { ...config, oxc: { jsx: { runtime: "automatic" as const } } };
|