mirror of
https://github.com/pdfme/pdfme.git
synced 2026-06-02 11:17:32 -04:00
* feat(converter): add md2pdf MVP * fix(converter): address md2pdf MVP review * fix(converter): let dynamic layout paginate md2pdf output * docs(plan): clarify md2pdf follow-up work * docs(plan): remove current status section * docs(converter): document CJK fonts for md2pdf * fix(converter): cover md2pdf horizontal rules
41 lines
1.7 KiB
JSON
41 lines
1.7 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable", "ESNext"],
|
|
"moduleResolution": "node",
|
|
"ignoreDeprecations": "6.0",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@pdfme/common": ["packages/common/src/index.ts"],
|
|
"@pdfme/converter": ["packages/converter/src/index.ts"],
|
|
"@pdfme/converter/md2pdf": ["packages/converter/src/md2pdf.ts"],
|
|
"@pdfme/generator": ["packages/generator/src/index.ts"],
|
|
"@pdfme/jsx": ["packages/jsx/src/index.ts"],
|
|
"@pdfme/jsx/jsx-runtime": ["packages/jsx/src/jsx-runtime.ts"],
|
|
"@pdfme/jsx/jsx-dev-runtime": ["packages/jsx/src/jsx-dev-runtime.ts"],
|
|
"@pdfme/manipulator": ["packages/manipulator/src/index.ts"],
|
|
"@pdfme/pdf-lib": ["packages/pdf-lib/src/index.ts"],
|
|
"@pdfme/schemas": ["packages/schemas/src/index.ts"],
|
|
"@pdfme/schemas/builtins": ["packages/schemas/src/builtins.ts"],
|
|
"@pdfme/schemas/dynamicLayout": ["packages/schemas/src/dynamicLayout.ts"],
|
|
"@pdfme/schemas/lists": ["packages/schemas/src/lists.ts"],
|
|
"@pdfme/schemas/tables": ["packages/schemas/src/tables.ts"],
|
|
"@pdfme/schemas/texts": ["packages/schemas/src/texts.ts"],
|
|
"@pdfme/schemas/types": ["packages/schemas/src/types.ts"],
|
|
"@pdfme/schemas/utils": ["packages/schemas/src/utils.ts"],
|
|
"@pdfme/ui": ["packages/ui/src/index.ts"],
|
|
"@pdfme/cli": ["packages/cli/src/index.ts"]
|
|
},
|
|
"types": ["node"],
|
|
"typeRoots": ["node_modules/@types"],
|
|
"sourceMap": true
|
|
}
|
|
}
|