Skip to content

Commit

Permalink
enable type check for d.ts files (#1569)
Browse files Browse the repository at this point in the history
  • Loading branch information
mshustov authored Oct 20, 2021
1 parent 0e35840 commit 875f969
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ if (transportVersion.includes('-')) {
}
const nodeVersion = process.versions.node

interface NodeOptions {
export interface NodeOptions {
url: URL
id?: string
agent?: HttpAgentOptions | UndiciAgentOptions
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"noFallthroughCasesInSwitch": true,
"useDefineForClassFields": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"skipLibCheck": false,
"esModuleInterop": true,
"isolatedModules": true,
"importHelpers": true,
Expand Down

0 comments on commit 875f969

Please sign in to comment.