pdf-to-markdown/tsconfig.json
Johannes Zillmann 55ae236928 Improve header detection
- fix tests
- still run header detection based on heights even if TOC headlines have been identified
2024-03-28 11:39:34 -06:00

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"]
}