Skip to content

Commit 735bf41

Browse files
authoredJan 28, 2024
Update TypeScript recipe to suggest --import flag and tsimp
1 parent aae39b2 commit 735bf41

File tree

1 file changed

+11
-33
lines changed

1 file changed

+11
-33
lines changed
 

‎docs/recipes/typescript.md

+11-33
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,21 @@ Broadly speaking, there are two ways to run tests written in TypeScript:
1717

1818
**You can use loaders, but you're largely on your own. [Please post questions to our Discussions forum if you're stuck](https://github.com/avajs/ava/discussions/categories/q-a).**
1919

20+
> [!NOTE]
21+
> Custom loaders changed with the release of Node.js 20. This recipe assumes your Node.js version is equal to or higher than the following. For older versions, please see a [previous commit](https://github.com/avajs/ava/blob/aae39b20ba3ef80e5bedb1e5882432a3cd7c44eb/docs/recipes/typescript.md).
22+
>
23+
> | Node.js Major Version | Minimum Version |
24+
> | --------------------- | --------------- |
25+
> | 18 | 18.18.0 |
26+
> | 20 | 20.8.0 |
27+
> | 21 | 21.0.0 |
28+
2029
There are two components to a setup like this:
2130

2231
1. [Make sure AVA recognizes the extensions of your TypeScript files](../06-configuration.md#configuring-module-formats)
2332
2. Install the loader [through `nodeArguments`](../06-configuration.md#node-arguments)
2433

25-
[`tsx`](https://github.com/esbuild-kit/tsx) may be the best loader available. The setup, assuming your TypeScript config outputs ES modules, would look like this:
34+
[`tsimp`](https://github.com/tapjs/tsimp) may be the best loader available. The setup, assuming your TypeScript config outputs ES modules, would look like this:
2635

2736
`package.json`:
2837

@@ -32,41 +41,10 @@ There are two components to a setup like this:
3241
"ts": "module"
3342
},
3443
"nodeArguments": [
35-
"--loader=tsx"
44+
"--import=tsimp"
3645
]
3746
}
3847
```
39-
### When using custom loaders
40-
41-
#### Mocking
42-
43-
Mocking with `tsx` (such as with [`esmock`](https://github.com/iambumblehead/esmock)) isn't currently possible (https://github.com/esbuild-kit/tsx/issues/264). [`ts-node`](https://github.com/TypeStrong/ts-node) can be used instead:
44-
45-
`package.json`:
46-
47-
```json
48-
"ava": {
49-
"extensions": {
50-
"ts": "module"
51-
},
52-
"nodeArguments": [
53-
"--loader=ts-node/esm",
54-
"--loader=esmock"
55-
]
56-
}
57-
```
58-
59-
#### Node.js 20
60-
61-
In Node.js 20, custom loaders must be specified via the `NODE_OPTIONS` environment variable:
62-
63-
`package.json`:
64-
65-
```json
66-
"scripts": {
67-
"test": "NODE_OPTIONS='--loader=tsx' ava"
68-
}
69-
```
7048

7149
## Writing tests
7250

0 commit comments

Comments
 (0)
Please sign in to comment.