Skip to content

Commit 875f969

Browse files
authored
enable type check for d.ts files (#1569)
1 parent 0e35840 commit 875f969

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ if (transportVersion.includes('-')) {
6363
}
6464
const nodeVersion = process.versions.node
6565

66-
interface NodeOptions {
66+
export interface NodeOptions {
6767
url: URL
6868
id?: string
6969
agent?: HttpAgentOptions | UndiciAgentOptions

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"noFallthroughCasesInSwitch": true,
1616
"useDefineForClassFields": true,
1717
"forceConsistentCasingInFileNames": true,
18-
"skipLibCheck": true,
18+
"skipLibCheck": false,
1919
"esModuleInterop": true,
2020
"isolatedModules": true,
2121
"importHelpers": true,

0 commit comments

Comments
 (0)