You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/recipes/typescript.md
+11-33
Original file line number
Diff line number
Diff line change
@@ -17,12 +17,21 @@ Broadly speaking, there are two ways to run tests written in TypeScript:
17
17
18
18
**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).**
19
19
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
+
20
29
There are two components to a setup like this:
21
30
22
31
1.[Make sure AVA recognizes the extensions of your TypeScript files](../06-configuration.md#configuring-module-formats)
23
32
2. Install the loader [through `nodeArguments`](../06-configuration.md#node-arguments)
24
33
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:
26
35
27
36
`package.json`:
28
37
@@ -32,41 +41,10 @@ There are two components to a setup like this:
32
41
"ts": "module"
33
42
},
34
43
"nodeArguments": [
35
-
"--loader=tsx"
44
+
"--import=tsimp"
36
45
]
37
46
}
38
47
```
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:
0 commit comments