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。