mirror of
https://github.com/pdfme/pdfme.git
synced 2026-06-02 11:17:32 -04:00
* feat(jsx): add pdfme jsx package * refactor(jsx): derive text props from schema types * fix(jsx): tighten mvp layout constraints * feat(jsx): measure text height with schema helpers * docs: update jsx md2pdf roadmap
19 lines
570 B
JSON
19 lines
570 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationDir": "./dist/typecheck",
|
|
"emitDeclarationOnly": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@pdfme/jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "./dist/typecheck",
|
|
"tsBuildInfoFile": "./dist/typecheck/tsconfig.tsbuildinfo",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.d.ts"],
|
|
"references": [{ "path": "../common" }, { "path": "../schemas" }]
|
|
}
|