Skip to content

Commit

Permalink
Migrate the typescript options to a config file
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
stof committed Aug 31, 2023
1 parent 92f7653 commit d0bee1b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
13 changes: 1 addition & 12 deletions gulpfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1549,19 +1549,8 @@ gulp.task("jsdoc", function (done) {

gulp.task("types", function (done) {
console.log("### Generating TypeScript definitions using `tsc`");
const args = [
"target ESNext",
"allowJS",
"declaration",
`outDir ${TYPES_DIR}`,
"strict",
"esModuleInterop",
"forceConsistentCasingInFileNames",
"emitDeclarationOnly",
"moduleResolution node",
].join(" --");
exec(
`"node_modules/.bin/tsc" --${args} src/pdf.js web/pdf_viewer.component.js`,
`"node_modules/.bin/tsc" --outDir ${TYPES_DIR} --project .`,
done
);
});
Expand Down
16 changes: 16 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"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"
]
}

0 comments on commit d0bee1b

Please sign in to comment.