From 1fecf7ff92a5f1a0cc6ea1d27026f9f54a3d5ead Mon Sep 17 00:00:00 2001 From: Ahn Date: Fri, 26 Mar 2021 00:31:30 +0100 Subject: [PATCH] build: follow Jest node engines (#2478) BREAKING CHANGE `ts-jest` now uses the same node engines like Jest. This change can cause installation issue for users who install `ts-jest` with unsupported node versions. It is recommended to use Jest supported node engines, see https://github.com/facebook/jest/blob/master/package.json#L146 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3ae93477ee..10da4ec7fb 100644 --- a/package.json +++ b/package.json @@ -138,6 +138,6 @@ ] }, "engines": { - "node": ">= 10" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }