-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 686 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"compilerOptions": {
"baseUrl": ".",
"rootDir": "src/pdf-parse",
"outDir": "dist/pdf-parse/esm",
"declarationDir": "temp/types/pdf-parse",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"isolatedModules": true,
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"jsx": "react",
"noEmit": false,
"noUncheckedIndexedAccess": false,
"skipLibCheck": true,
"strict": true,
"verbatimModuleSyntax": false,
"paths": {
"pdf-parse": ["src/pdf-parse"]
}
},
"include": ["src/pdf-parse/**/*"],
"exclude": ["src/pdf-parse/**/_*", "src/pdf-parse/_**/*"]
}