mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2024-11-21 23:33:31 +01:00
55ae236928
- fix tests - still run header detection based on heights even if TOC headlines have been identified
21 lines
431 B
JSON
21 lines
431 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"outDir": "./lib",
|
|
"strict": true,
|
|
"strictNullChecks": false,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": false,
|
|
"useUnknownInCatchVariables": false,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"src/*": ["src/*"],
|
|
"test/*": ["test/*"]
|
|
}
|
|
},
|
|
"include": ["src", "test"],
|
|
"exclude": ["node_modules"]
|
|
}
|