mirror of
https://github.com/pdfme/pdfme.git
synced 2026-04-19 05:29:11 -04:00
* TMP * TMP * Fix failing test * Update ESLint configuration * Update ESLint configuration
49 lines
923 B
JSON
49 lines
923 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"
|
|
],
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"types": [
|
|
"node",
|
|
"jest",
|
|
"@types/jest"
|
|
],
|
|
"typeRoots": [
|
|
"../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"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts",
|
|
]
|
|
} |