Bun 读取你 tsconfig.json
文件中的 paths
字段来重写导入路径。这对于别名包名或避免过长的相对路径非常有用。
{
"compilerOptions": {
"paths": {
"my-custom-name": ["zod"],
"@components/*": ["./src/components/*"]
}
}
}
使用上述 tsconfig.json
,以下导入将被重写
import { z } from "my-custom-name"; // imports from "zod"
import { Button } from "@components/Button"; // imports from "./src/components/Button"
请参阅 文档 > 运行时 > TypeScript 以获取更多关于在 Bun 中使用 TypeScript 的信息。