pdf.js/tsconfig.json
Christophe Coevoet bbf11a5783 Migrate the typescript options to a config file
Some configurations settings like `paths` cannot be provided through CLI
arguments but only in a configuration file. And when using a
configuration file, only a few options (like `--outDir` can still be
provided) through the CLI.
2023-09-01 09:48:34 +02:00

17 lines
330 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"allowJs": true,
"declaration": true,
"strict": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node"
},
"files": [
"src/pdf.js",
"web/pdf_viewer.component.js"
]
}