Skip to content

Commit

Permalink
chore: use skipLibCheck (oven-sh/bun#8761)
Browse files Browse the repository at this point in the history
  • Loading branch information
kravetsone committed Nov 8, 2024
1 parent 7141cd7 commit 280f9ad
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
3 changes: 2 additions & 1 deletion packages/api/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"noUnusedParameters": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"declaration": true
"declaration": true,
"skipLibCheck": true
},
"include": ["./src", "./typings/*.ts"]
}
3 changes: 2 additions & 1 deletion packages/express/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"noUnusedParameters": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"declaration": true
"declaration": true,
"skipLibCheck": true
},
"include": ["./src", "./typings/*.d.ts"]
}
3 changes: 2 additions & 1 deletion packages/fastify/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"noUnusedParameters": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"declaration": true
"declaration": true,
"skipLibCheck": true
},
"include": ["./src", "./typings/*.d.ts"]
}
3 changes: 2 additions & 1 deletion packages/hapi/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"noUnusedParameters": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"declaration": true
"declaration": true,
"skipLibCheck": true
},
"include": ["./src", "./typings/*.d.ts"]
}
3 changes: 2 additions & 1 deletion packages/hono/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"noUnusedParameters": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"declaration": true
"declaration": true,
"skipLibCheck": true
},
"include": ["./src", "./typings/*.d.ts"]
}
3 changes: 2 additions & 1 deletion packages/koa/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"noUnusedParameters": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"declaration": true
"declaration": true,
"skipLibCheck": true
},
"include": ["./src", "./typings/*.d.ts"]
}
3 changes: 2 additions & 1 deletion packages/ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"noUnusedLocals": true,
"resolveJsonModule": true,
"declaration": true,
"noEmit": true
"noEmit": true,
"skipLibCheck": true
},
"include": ["./src", "./typings/*.d.ts"]
}
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"noUnusedParameters": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"declaration": true
"declaration": true,
"skipLibCheck": true
},
}

0 comments on commit 280f9ad

Please sign in to comment.