TypeScript 기본 지원

설정 파일(.tsconfig) 없이 바로 실행

더 이상 ts-node나 복잡한 빌드 설정이 필요 없습니다.
Bun은 TypeScript를 1급 시민으로 대우합니다.

index.ts
$ bun run index.ts

Hello from TypeScript!
Type checking skipped for speed (transpilation only).

// index.ts
interface User {
  name: string;
  id: number;
}

const user: User = {
  name: "Bun",
  id: 1,
};

console.log(`Hello, ${user.name}!`);