From 9244100e39052a4ed10d245b808f81579880340c Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Mon, 25 Mar 2024 22:29:43 +0900 Subject: [PATCH] Fix documentation of supported JS Features (#63640) ### What? Class Fields and Static Properties are already included in ES2022, not in the proposal. Co-authored-by: Steven --- docs/04-architecture/supported-browsers.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/04-architecture/supported-browsers.mdx b/docs/04-architecture/supported-browsers.mdx index 1ad6841388ffe..85cc5219e81d5 100644 --- a/docs/04-architecture/supported-browsers.mdx +++ b/docs/04-architecture/supported-browsers.mdx @@ -54,7 +54,7 @@ Next.js allows you to use the latest JavaScript features out of the box. In addi - [Dynamic `import()`](https://github.com/tc39/proposal-dynamic-import) (ES2020) - [Optional Chaining](https://github.com/tc39/proposal-optional-chaining) (ES2020) - [Nullish Coalescing](https://github.com/tc39/proposal-nullish-coalescing) (ES2020) -- [Class Fields](https://github.com/tc39/proposal-class-fields) and [Static Properties](https://github.com/tc39/proposal-static-class-features) (part of stage 3 proposal) +- [Class Fields](https://github.com/tc39/proposal-class-fields) and [Static Properties](https://github.com/tc39/proposal-static-class-features) (ES2022) - and more! ### TypeScript Features