Bun

指南运行时

为 Bun 安装 TypeScript 声明

要在项目中安装 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
  }
}

请参阅 生态系统 > TypeScript,了解 Bun 中 TypeScript 支持的完整指南。