diff options
-rw-r--r-- | docs/api/utils.md | 2 | ||||
-rw-r--r-- | docs/guides/test/migrate-from-jest.md | 2 | ||||
-rw-r--r-- | docs/runtime/jsx.md | 2 | ||||
-rw-r--r-- | docs/runtime/plugins.md | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/api/utils.md b/docs/api/utils.md index 1e18c67e1..9889d6aa0 100644 --- a/docs/api/utils.md +++ b/docs/api/utils.md @@ -183,7 +183,7 @@ const currentFile = import.meta.url; Bun.openInEditor(currentFile); ``` -You can override this via the `debug.editor` setting in your [`bunfig.toml`](/docs/runtime/configuration) +You can override this via the `debug.editor` setting in your [`bunfig.toml`](/docs/runtime/bunfig) ```toml-diff#bunfig.toml + [debug] diff --git a/docs/guides/test/migrate-from-jest.md b/docs/guides/test/migrate-from-jest.md index 595ac0fae..4adbddc34 100644 --- a/docs/guides/test/migrate-from-jest.md +++ b/docs/guides/test/migrate-from-jest.md @@ -98,7 +98,7 @@ Many other flags become irrelevant or obsolete when using `bun test`. - `extensionsToTreatAsEsm` - `haste` — Bun uses it's own internal source maps - `watchman`, `watchPlugins`, `watchPathIgnorePatterns` — use `--watch` to run tests in watch mode -- `verbose` — set `logLevel: "debug"` in [`bunfig.toml`](/docs/runtime/configuration.md#runtime) +- `verbose` — set `logLevel: "debug"` in [`bunfig.toml`](/docs/runtime/bunfig#loglevel) --- diff --git a/docs/runtime/jsx.md b/docs/runtime/jsx.md index 3d37dbe01..31a61652b 100644 --- a/docs/runtime/jsx.md +++ b/docs/runtime/jsx.md @@ -14,7 +14,7 @@ console.log(<Component message="Hello world!" />); ## Configuration -Bun reads your `tsconfig.json` or `jsconfig.json` configuration files to determines how to perform the JSX transform internally. To avoid using either of these, the following options can also be defined in [`bunfig.toml`](/docs/runtime/configuration). +Bun reads your `tsconfig.json` or `jsconfig.json` configuration files to determines how to perform the JSX transform internally. To avoid using either of these, the following options can also be defined in [`bunfig.toml`](/docs/runtime/bunfig). The following compiler options are respected. diff --git a/docs/runtime/plugins.md b/docs/runtime/plugins.md index a1525790a..8f5bf21e2 100644 --- a/docs/runtime/plugins.md +++ b/docs/runtime/plugins.md @@ -17,7 +17,7 @@ const myPlugin: BunPlugin = { }; ``` -Plugins have to be registered before any other code runs! To achieve this, use the `preload` option in your [`bunfig.toml`](/docs/runtime/configuration). Bun automatically loads the files/modules specified in `preload` before running a file. +Plugins have to be registered before any other code runs! To achieve this, use the `preload` option in your [`bunfig.toml`](/docs/runtime/bunfig). Bun automatically loads the files/modules specified in `preload` before running a file. ```toml preload = ["./myPlugin.ts"] |