mirror of
https://github.com/pdfme/pdfme.git
synced 2026-06-02 19:29:57 -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
18 lines
456 B
JSON
18 lines
456 B
JSON
{
|
|
"extends": "../../tsconfig.build.base.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationDir": "./dist",
|
|
"emitDeclarationOnly": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@pdfme/jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.d.ts"],
|
|
"exclude": ["src/__tests__"]
|
|
}
|