Skip to content

Commit 52d696c

Browse files
committed
docs: use .md extension in links
1 parent b54131c commit 52d696c

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docs/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Here are some notable ones I've found via [GitHub Search](https://github.com/sea
6262

6363
- **Watcher**
6464

65-
As a DX bonus, _tsx_ also comes with [Watch mode](/watch-mode) to help you iterate faster!
65+
As a DX bonus, _tsx_ also comes with [Watch mode](/watch-mode.md) to help you iterate faster!
6666

6767
For a detailed technical comparison, you can refer to this [exhaustive comparison](https://github.com/privatenumber/ts-runtime-comparison) between `tsx`, `ts-node`, and other runtimes.
6868

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ tsx file.js
4545

4646
- Iterate on your code faster and boost productivity!
4747

48-
As a DX bonus, _tsx_ comes with a [watcher](/watch-mode) to re-run your files whenever you save them.
48+
As a DX bonus, _tsx_ comes with a [watcher](/watch-mode.md) to re-run your files whenever you save them.
4949

5050
## Limitations
5151

docs/node/cjs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This section is only for adding tsx in CommonJS mode (doesn't affect `.mjs` or `
77
::: warning Not for 3rd-party packages
88
This enhances the entire runtime so it may not be suitable for loading TypeScript files from a 3rd-party package as it may lead to unexpected behavior in user code.
99

10-
For importing TypeScript files in CommonJS mode without affecting the environment, see [`tsx.require()`](/node/tsx-require).
10+
For importing TypeScript files in CommonJS mode without affecting the environment, see [`tsx.require()`](/node/tsx-require.md).
1111
:::
1212

1313
## Command-line API

docs/node/esm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This section is only for adding tsx in Module mode (doesn't affect `.cjs` or `.c
77
::: warning Not for 3rd-party packages
88
This enhances the entire runtime so it may not be suitable for loading TypeScript files from a 3rd-party package as it may lead to unexpected behavior in user code.
99

10-
For importing TypeScript files in Module mode without affecting the environment, see the _Scoped registration_ section below or [`tsImport()`](/node/ts-import).
10+
For importing TypeScript files in Module mode without affecting the environment, see the _Scoped registration_ section below or [`tsImport()`](/node/ts-import.md).
1111
:::
1212

1313
## Command-line API

docs/node/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The Node.js API is for advanced usage and should not be necessary for the majory
99

1010
The Node.js API allows you to enhance Node with _tsx_ without directly running `tsx`. This is useful for adding TypeScript support to binaries (e.g. `eslint`), or to your 3rd-party package without affecting the environment (e.g. loading config files), or simply using `node` directly to reduce overhead.
1111

12-
Note, when using the Node.js integrations, CLI features such as [_Watch mode_](/watch-mode) will not be available.
12+
Note, when using the Node.js integrations, CLI features such as [_Watch mode_](/watch-mode.md) will not be available.
1313

1414
## Global enhancement
1515

docs/node/ts-import.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const loaded = await tsImport('./file.ts', import.meta.url)
2424
const loadedAgain = await tsImport('./file.ts', import.meta.url)
2525
```
2626
27-
If you'd like to leverage module caching, see the [ESM scoped registration](/node/esm#scoped-registration) section.
27+
If you'd like to leverage module caching, see the [ESM scoped registration](/node/esm.md#scoped-registration) section.
2828
2929
## CommonJS usage
3030

0 commit comments

Comments
 (0)