要在您的项目中为 Bun 的内置 API 安装 TypeScript 定义,请安装 @types/bun
。
bun add -d @types/bun # dev dependency
以下是 Bun 项目推荐的完整 compilerOptions
集合。 使用此 tsconfig.json
,您可以使用顶层 await、带扩展名或不带扩展名的导入以及 JSX。
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true,
},
}
有关 Bun 中 TypeScript 支持的完整指南,请参阅 生态系统 > TypeScript。