mirror of
https://github.com/pdfme/pdfme.git
synced 2026-04-23 15:40:25 -04:00
19 lines
457 B
JSON
19 lines
457 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"target": "es5",
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"declarationDir": "dist/types",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"types": ["node"],
|
|
"typeRoots": ["node_modules/@types"],
|
|
"sourceMap": true
|
|
},
|
|
"baseUrl": ".",
|
|
"include": ["declaration.d.ts", "src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|