From e2abc8be675cce80b790fc60c2a77ad56a1184ad Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Thu, 29 Jun 2023 14:10:52 +0200 Subject: [PATCH] Change to require Node.js 16 --- readme.md | 4 ++-- tsconfig.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index ebc8ca3..e650bdb 100644 --- a/readme.md +++ b/readme.md @@ -223,8 +223,8 @@ versions of Node.js. When we cut a new major release, we drop support for unmaintained versions of Node. -This means we try to keep the current release line, `unist-util-assert@^3`, -compatible with Node.js 12. +This means we try to keep the current release line, `unist-util-assert@^4`, +compatible with Node.js 16. ## Related diff --git a/tsconfig.json b/tsconfig.json index 870d82c..82cc749 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,10 +5,10 @@ "declaration": true, "emitDeclarationOnly": true, "exactOptionalPropertyTypes": true, - "lib": ["es2020"], + "lib": ["es2022"], "module": "node16", "strict": true, - "target": "es2020" + "target": "es2022" }, "exclude": ["coverage/", "node_modules/"], "include": ["**/*.js"]