aboutsummaryrefslogtreecommitdiff
path: root/docs/guides/runtime/tsconfig-paths.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/guides/runtime/tsconfig-paths.md')
-rw-r--r--docs/guides/runtime/tsconfig-paths.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/guides/runtime/tsconfig-paths.md b/docs/guides/runtime/tsconfig-paths.md
index 5c3f591f5..176051d5a 100644
--- a/docs/guides/runtime/tsconfig-paths.md
+++ b/docs/guides/runtime/tsconfig-paths.md
@@ -8,8 +8,8 @@ Bun reads the `paths` field in your `tsconfig.json` to re-write import paths. Th
{
"compilerOptions": {
"paths": {
- "my-custom-name": "zod",
- "@components/*": "./src/components/*"
+ "my-custom-name": ["zod"],
+ "@components/*": ["./src/components/*"]
}
}
}