mirror of
https://github.com/pdfme/pdfme.git
synced 2026-05-19 12:15:08 -04:00
49 lines
971 B
JSON
49 lines
971 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"target": "ES2020",
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"declaration": true,
|
|
"declarationDir": "dist/types",
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ESNext"
|
|
],
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"types": ["jest"],
|
|
"typeRoots": [
|
|
"../node_modules/@types",
|
|
"./node_modules/@types",
|
|
"../../node_modules/@types"
|
|
],
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@pdfme/common": [
|
|
"packages/common/dist/esm/src"
|
|
],
|
|
"@pdfme/schemas": [
|
|
"packages/schemas/dist/esm/src"
|
|
]
|
|
},
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"__tests__/**/*.ts",
|
|
"__tests__/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|