bbf11a5783
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.
17 lines
330 B
JSON
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"
|
|
]
|
|
}
|