From c4629cc414d19ea48b4c8aa17e02ba7989451e05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Bruus=20Zeppelin?= Date: Mon, 6 Nov 2023 13:12:16 +0100 Subject: [PATCH] Fix typo in upgrade guide --- .prettierrc | 3 --- docs/pages/misc-pages/upgrade-guide.md | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) delete mode 100644 .prettierrc diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index 8db60caac..000000000 --- a/.prettierrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "singleQuote": true -} diff --git a/docs/pages/misc-pages/upgrade-guide.md b/docs/pages/misc-pages/upgrade-guide.md index 8a24613ef..ddcfe5866 100644 --- a/docs/pages/misc-pages/upgrade-guide.md +++ b/docs/pages/misc-pages/upgrade-guide.md @@ -54,7 +54,7 @@ Furthermore, the SDK is now published as an ES module, making it possible to eliminate dead code. For **TypeScript** users, at least typescript version 5 is required along with -the setting `compilerOptions.moduleResultion` to `"bundler"` to match the +the setting `compilerOptions.moduleResolution` to `"bundler"` to match the resolution strategy of modern bundlers. The following entrypoints are made available for consumers of @@ -115,7 +115,7 @@ Alternatively, files names with the extension `mjs` (or `mts` for TypeScript) are always handled as ES modules. For **TypeScript** users, at least typescript version 4.7 is required along -with the setting `compilerOptions.moduleResultion` to `"node16"` or +with the setting `compilerOptions.moduleResolution` to `"node16"` or `"nodenext"` to match the resolution strategy of node version 16 and later. ## Common SDK version 5 to 6 (Web 2->3) (Node 5->6)