Skip to content

Commit

Permalink
chore(tsconfig): sort options
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Aug 13, 2023
1 parent d6c4b50 commit 2e25274
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions scripts/license-checker.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

const { promisify } = require("util");
const { init } = require("license-checker");
// @ts-ignore
const copyLeftLicenses = require("spdx-copyleft");
const path = require("upath");

Expand Down
7 changes: 5 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"include": ["src/index.js"],
"compilerOptions": {
"allowJs": true,
"declaration": true,
"emitDeclarationOnly": true,
"lib": ["ES2019"],
"moduleResolution": "nodenext",
"outDir": "types",
"resolveJsonModule": true,
"strict": true
}
},
"include": ["src/index.js"]
}
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,8 @@ export class Poppler {
options?:
| {
antialias?:
| "none"
| "default"
| "none"
| "best"
| "fast"
| "good"
Expand Down

0 comments on commit 2e25274

Please sign in to comment.