< B / >

TypeScript

Started Last edited

§ Correct Type Hints

Don’t forget to install your types:

Terminal window
bun install @bun/types

And then, add them to your tsconfig.json:

tsconfig.json
{
"compilerOptions": {
"types": ["node", "bun"],
"skipLibCheck": true
}
}