mirror of
https://github.com/pdfme/pdfme.git
synced 2026-04-17 12:38:57 -04:00
22 lines
552 B
JSON
22 lines
552 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationDir": "./dist/typecheck",
|
|
"emitDeclarationOnly": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "./dist/typecheck",
|
|
"tsBuildInfoFile": "./dist/typecheck/tsconfig.tsbuildinfo",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"references": [
|
|
{ "path": "../common" },
|
|
{ "path": "../converter" },
|
|
{ "path": "../generator" },
|
|
{ "path": "../schemas" }
|
|
]
|
|
}
|