fix: pdf export (#8564)

* feat: pdf export

* fix: tests

* fix: tests

---------

Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
This commit is contained in:
M. Palanikannan 2026-01-26 22:08:10 +05:30 committed by GitHub
parent 20e266c9bb
commit b31c0195bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 4287 additions and 62 deletions

View file

@ -0,0 +1,21 @@
import { defineConfig } from "vitest/config";
import path from "path";
export default defineConfig({
test: {
environment: "node",
globals: true,
include: ["tests/**/*.test.ts", "tests/**/*.spec.ts"],
coverage: {
provider: "v8",
reporter: ["text", "json", "html"],
include: ["src/**/*.ts"],
exclude: ["src/**/*.d.ts", "src/**/types.ts"],
},
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});