Are your Vercel builds failing when you're trying to use got by Sindre Sorhus with Next.js 13 or 14?
Maybe you've stumbled upon this GitHub issue and looked for a solution but got confused with people's answers.
tsc can’t resolve types for got 13 · Issue #2267 · sindresorhus/gotDescribe the bug Node.js version: node18 OS & version: doesn’t matter got 13 types exports breaks tsconfig.json “moduleResolution”: “Node” and package.json “type”: “module” Actual behavior index.ts…github.com/sindresorhus/got/issues/2267The fix is pretty simple.
- Go to your project settings on Vercel
- Scroll down to the
Node.js Version
section and select 20.x - Add a
got.d.ts
file to your project's root.
That should do the trick. Your Vercel builds will work again.