Commit 1a0d337

Anton Golub <antongolub@antongolub.com>
2025-03-16 08:13:34
docs: mention `@types/node` and `@types/fs-extra` requirements (#1134)
1 parent fb2161b
Changed files (1)
docs/setup.md
@@ -58,7 +58,11 @@ import { $ } from 'zx'
 const { $ } = require('zx')
 ```
 
-It has also built-in TypeScript libdefs.
+It has also built-in TypeScript libdefs. But `@types/fs-extra` and `@types/node` are required to be installed on user's side.
+
+```bash
+npm i -D @types/fs-extra @types/node
+```
 
 ```ts
 import { type Options } from 'zx'