aboutsummaryrefslogtreecommitdiff
path: root/docs/guide
diff options
context:
space:
mode:
authorMarlon Passos <[email protected]>2024-07-21 17:25:30 -0300
committerGitHub <[email protected]>2024-07-21 20:25:30 +0000
commit907996cfb9d87fb2919cef8e5a8dc2935a7a3ded (patch)
treea43a967cd87d8586ddd02f41a3462f83f6cd6372 /docs/guide
parent3806833048cdabeb17cf31675018d36f07037683 (diff)
downloadfaker-907996cfb9d87fb2919cef8e5a8dc2935a7a3ded.tar.xz
faker-907996cfb9d87fb2919cef8e5a8dc2935a7a3ded.zip
docs: replace deprecated moduleResolution (#3018)
Diffstat (limited to 'docs/guide')
-rw-r--r--docs/guide/usage.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guide/usage.md b/docs/guide/usage.md
index c9197479..9c1e1612 100644
--- a/docs/guide/usage.md
+++ b/docs/guide/usage.md
@@ -97,7 +97,7 @@ In order to have Faker working properly, you need to check if these `compilerOpt
{
"compilerOptions": {
"esModuleInterop": true,
- "moduleResolution": "Node"
+ "moduleResolution": "Bundler" // "Node10", "Node16" or "NodeNext"
}
}
```