Skip to content

Commit

Permalink
fix: add skipLibCheck
Browse files Browse the repository at this point in the history
  • Loading branch information
felixmosh committed Nov 13, 2024
1 parent 4b175fa commit 234e85a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 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"]
}

0 comments on commit 234e85a

Please sign in to comment.